Skip to content

Commit 82ae250

Browse files
committed
refactor: comment out future check cards section in health settings page
- Commented out the section displaying future check cards to improve code clarity and maintainability. - This change prepares for potential future enhancements without removing the existing structure.
1 parent 14855b9 commit 82ae250

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

apps/web/src/pages/settings/health.vue

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -174,28 +174,28 @@
174174
style='height: 30px; width: 90px;'
175175
)
176176

177-
q-card.q-mt-md(v-if='futureCheckCards.length' flat bordered)
178-
q-card-section
179-
.row.items-center.no-wrap
180-
q-icon(name='mdi-timeline-clock-outline' size='22px' class='q-mr-sm' color='warning')
181-
.text-subtitle2 Contrôles prévus (phase suivante)
182-
q-separator
183-
q-card-section
184-
.row.q-col-gutter-md
185-
.col-12.col-md-6(v-for='card in futureCheckCards' :key='card.key')
186-
q-banner(dense rounded class='bg-grey-2 text-dark')
187-
.row.items-center.justify-between
188-
.row.items-center.no-wrap
189-
q-icon(:name='futureCheckIcon(card.key)' size='18px' class='q-mr-xs' color='grey-8')
190-
.text-body2 {{ card.label }}
191-
q-chip(
192-
dense
193-
square
194-
:color='card.enabled ? "positive" : "grey-7"'
195-
text-color='white'
196-
:label='card.enabled ? "ACTIF" : "INACTIF"'
197-
)
198-
.text-caption.q-mt-xs {{ card.note }}
177+
//- q-card.q-mt-md(v-if='futureCheckCards.length' flat bordered)
178+
//- q-card-section
179+
//- .row.items-center.no-wrap
180+
//- q-icon(name='mdi-timeline-clock-outline' size='22px' class='q-mr-sm' color='warning')
181+
//- .text-subtitle2 Contrôles prévus (phase suivante)
182+
//- q-separator
183+
//- q-card-section
184+
//- .row.q-col-gutter-md
185+
//- .col-12.col-md-6(v-for='card in futureCheckCards' :key='card.key')
186+
//- q-banner(dense rounded class='bg-grey-2 text-dark')
187+
//- .row.items-center.justify-between
188+
//- .row.items-center.no-wrap
189+
//- q-icon(:name='futureCheckIcon(card.key)' size='18px' class='q-mr-xs' color='grey-8')
190+
//- .text-body2 {{ card.label }}
191+
//- q-chip(
192+
//- dense
193+
//- square
194+
//- :color='card.enabled ? "positive" : "grey-7"'
195+
//- text-color='white'
196+
//- :label='card.enabled ? "ACTIF" : "INACTIF"'
197+
//- )
198+
//- .text-caption.q-mt-xs {{ card.note }}
199199
</template>
200200

201201
<script lang="ts">

0 commit comments

Comments
 (0)