feat: refs #6896 enhance VnTable components with alignment options and improve styling #1457

Merged
pablone merged 2 commits from 6896-fixAlignIssuesAndMinorCorrections into test 2025-02-21 06:36:10 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit ea6874c0db - Show all commits

View File

@ -3,6 +3,7 @@ import { ref, computed } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
import VnTable from 'components/VnTable/VnTable.vue';
import { dashIfEmpty } from 'src/filters';
const tableRef = ref();
const { t } = useI18n();
const route = useRoute();
@ -44,9 +45,12 @@ const columns = [
create: true,
component: 'select',
attrs: {
url: 'centers',
url: 'medicalCenters',
fields: ['id', 'name'],
},
format: (row, dashIfEmpty) => {
return dashIfEmpty(row.center?.name);
},
},
{
align: 'left',