Skip to content

Commit

Permalink
feat: add word-wrap to cells on notification panel
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrkollar committed Aug 8, 2024
1 parent 2800e3a commit 56c4d19
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/NotificationsPage.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<template>
<div class="q-pa-sm">
<div class="text-h5 q-pb-sm">Notifications</div>
<q-table :rows="notis" :columns="columns" row-key="ref" flat>
<q-table
:rows="notis"
:columns="columns"
row-key="ref"
flat
dense
wrap-cells
>
<template v-slot:header="props">
<q-tr :props="props">
<q-th v-for="col in props.cols" :key="col.name" :props="props">
Expand Down

0 comments on commit 56c4d19

Please sign in to comment.