# 데스크톱 화면에서 여러 게시물 선택 아이콘이 보이지 않습니다

**URL:** https://meta.discourse.org/t/cannot-see-the-multiple-posts-selection-icon-on-desktop-view/358683
**Category:** Support
**Tags:** bulk-actions
**Created:** [3월 24, 2025, 10:14오후 UTC](https://meta.discourse.org/t/cannot-see-the-multiple-posts-selection-icon-on-desktop-view/358683 "2025-03-24T22:14:18Z")
**Posts on this page:** 1
**Showing post:** 8

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [3월 25, 2025, 2:54오전 UTC](https://meta.discourse.org/t/cannot-see-the-multiple-posts-selection-icon-on-desktop-view/358683/8 "2025-03-25T02:54:40Z")

</div>

안전 모드에서 해당 아이콘이 보이지 않는 것이 맞는지 확인해 주세요. 이 URL처럼요: [https://dessein-tech.com/c/autocad/9?safe\_mode=no\_themes](https://dessein-tech.com/c/autocad/9?safe_mode=no_themes)?

[Topic List Previews](https://meta.discourse.org/t/topic-list-previews-tlp/209973)의 제목 형식이 헤더를 제거하는 것 같습니다. 여기에는 일괄 선택 기능도 포함됩니다(제목 헤더의 일부이므로).

그러나 제목 헤더가 제거되지 않는다고 가정하고 여기저기 CSS 조정을 테스트해 봤습니다. 일괄 선택 기능을 지원하는 것이 가능합니다.

 ![The image shows a spreadsheet with two selected columns titled "Understanding Discourse for new users" and "Managing Activity Summary email subscriptions," both marked as general topics, each containing a short summary. (Captioned by AI)](https://global.discourse-cdn.com/meta/original/4X/c/2/b/c2bd90ff2048c101742602b650f0c28d793ad5a5.png)

@merefield

괜찮으실지 모르겠지만, 제 테스트 결과에 따르면 다음과 같은 방식으로 처리하면 지원할 수 있습니다.

```js
api.registerValueTransformer("topic-list-columns", ({ value: columns }) => {
    if (topicListPreviewsService.displayTiles) {
      columns.delete("activity");
      columns.delete("replies");
      columns.delete("views");
      columns.delete("posters");
      //columns.delete("topic"); 
    }
    return columns;
  });

```

여기서 ItemTopicCell을 제거하면:

```js
<template>
  <div class="topic-details">
    <!--ItemTopicCell @topic={{@topic}} /-->
    <PreviewsExcerpt @topic={{@topic}} />
    <PreviewsFooter @topic={{@topic}} />
  </div>
</template>

```

동일한 디스플레이를 얻을 수 있습니다.  
그 다음, 주제 헤더 라벨을 숨기고 헤더가 블록으로 표시되도록 몇 가지 CSS 조정이 필요합니다. 어떻게 생각하시나요?

---

_[View the full topic](https://meta.discourse.org/t/cannot-see-the-multiple-posts-selection-icon-on-desktop-view/358683)._
