Add page links

This commit is contained in:
iamBadgers
2026-03-28 00:40:08 -07:00
parent 31f77e50d9
commit 3bd86464e4

View File

@@ -61,7 +61,11 @@ function stopTable(tableId: number) {
<template #content> <template #content>
<DataTable class="ATTables" style="" :exportable="false" :value="activeTables"> <DataTable class="ATTables" style="" :exportable="false" :value="activeTables">
<Column field="table_name" header="Table Name" /> <Column field="table_name" header="Table Name" />
<Column field="table_link" header="Table Link" /> <Column field="table_link" header="Table Link">
<template #body="slotProps">
<a :href="slotProps.data.table_link">{{slotProps.data.table_link}}</a>
</template>
</Column>
<Column header="Close"> <Column header="Close">
<template #body="slotProps"> <template #body="slotProps">
<Button label="Close" @click="stopTable(slotProps.data.id)"/> <Button label="Close" @click="stopTable(slotProps.data.id)"/>