+ {{ data.created_at.short }} +
+ ++ {{ data.updated_at.short }} +
+ +diff --git a/components/data-stores/tables/DetailedDataStoreTable.vue b/components/data-stores/tables/DetailedDataStoreTable.vue index 2d01c52..ae53a09 100644 --- a/components/data-stores/tables/DetailedDataStoreTable.vue +++ b/components/data-stores/tables/DetailedDataStoreTable.vue @@ -104,19 +104,36 @@ const updateFilters = (filterText: string) => { />
-{{ data.created_at.short }}
{{ data.updated_at.short }}
diff --git a/components/data-stores/tables/DetailedProjectTable.vue b/components/data-stores/tables/DetailedProjectTable.vue
index 4d14898..ad6f757 100644
--- a/components/data-stores/tables/DetailedProjectTable.vue
+++ b/components/data-stores/tables/DetailedProjectTable.vue
@@ -160,8 +160,10 @@ const updateFilters = (filterText: string) => {
@@ -171,8 +173,10 @@ const updateFilters = (filterText: string) => {
diff --git a/components/projects/ProjectTable.vue b/components/projects/ProjectTable.vue
index 2ff338b..d6fe126 100644
--- a/components/projects/ProjectTable.vue
+++ b/components/projects/ProjectTable.vue
@@ -25,8 +25,11 @@ if (status.value === "success") {
// Table filters
const defaultFilters = {
global: { value: null, matchMode: FilterMatchMode.CONTAINS },
- "created_at.short": { value: null, matchMode: FilterMatchMode.DATE_IS },
- "updated_at.short": { value: null, matchMode: FilterMatchMode.DATE_IS },
+ "created_at.date": {
+ value: null,
+ matchMode: FilterMatchMode.DATE_IS | FilterMatchMode.DATE_BEFORE,
+ },
+ "updated_at.date": { value: null, matchMode: FilterMatchMode.DATE_IS },
};
const filters = ref(defaultFilters);
@@ -72,27 +75,39 @@ const updateFilters = (filterText: string) => {
/>
{{ data.created_at.short }}
{{ data.updated_at.short }}
diff --git a/components/projects/ProposalTable.vue b/components/projects/ProposalTable.vue
index 83ae921..6e58edf 100644
--- a/components/projects/ProposalTable.vue
+++ b/components/projects/ProposalTable.vue
@@ -110,8 +110,10 @@ const updateFilters = (filterText: string) => {
>
@@ -119,7 +121,13 @@ const updateFilters = (filterText: string) => {
{{ data.updated_at.short }}