Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6399 | Rev 6409 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6399 Rev 6400
Línea 230... Línea 230...
230
            type={feed_content_type}
230
            type={feed_content_type}
231
            voteUrl={feed_vote_url}
231
            voteUrl={feed_vote_url}
232
          />
232
          />
233
        </div>
233
        </div>
Línea 234... Línea 234...
234
 
234
 
235
        {!isShare && (
235
        {!isShare && feed_content_type !== 'fast-survey' && (
236
          <div className="px-3 d-flex align-items-center justify-content-between">
236
          <div className="px-3 d-flex align-items-center justify-content-between">
237
            <div className="reactions-counter">
237
            <div className="reactions-counter">
238
              {reactionsOptions
238
              {reactionsOptions
239
                .filter((option) =>
239
                .filter((option) =>
Línea 259... Línea 259...
259
              )}
259
              )}
260
            </div>
260
            </div>
261
          </div>
261
          </div>
262
        )}
262
        )}
Línea 263... Línea 263...
263
 
263
 
264
        {!isShare && (
264
        {!isShare && feed_content_type !== 'fast-survey' && (
265
          <div className="feed__buttons">
-
 
266
            {feed_save_reaction_recommended_url && (
265
          <div className="feed__buttons">
267
              <WithReactionIcon withTitle />
-
 
268
            )}
-
 
269
            {comment_add_url && (
266
            <WithReactionIcon withTitle />
270
              <InputOption
267
            <InputOption
271
                Icon={ChatOutlinedIcon}
268
              Icon={ChatOutlinedIcon}
272
                title={labels.COMMENT}
269
              title={labels.COMMENT}
273
                color="gray"
270
              color="gray"
274
                onClick={displayCommentSection}
271
              onClick={displayCommentSection}
275
                withTitle
272
              withTitle
276
              />
-
 
277
            )}
-
 
278
            {feed_share_url && (
273
            />
279
              <InputOption
274
            <InputOption
280
                Icon={ShareOutlinedIcon}
275
              Icon={ShareOutlinedIcon}
281
                title={labels.SHARE}
276
              title={labels.SHARE}
282
                color="gray"
277
              color="gray"
283
                onClick={handleShare}
278
              onClick={handleShare}
284
                withTitle
279
              withTitle
285
              />
-
 
286
            )}
280
            />
287
            {feed_share_external_url && <ExternalShareButton />}
281
            <ExternalShareButton />
288
          </div>
282
          </div>
Línea 289... Línea 283...
289
        )}
283
        )}
290
 
284