From 9699116a6f3075321f7fee5bf324255857c536d1 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Sat, 30 Mar 2024 05:00:28 -0400 Subject: [PATCH] feat(license): use concise endpoint for license list view Signed-off-by: Adam Setch --- src/views/portfolio/licenses/LicenseList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/portfolio/licenses/LicenseList.vue b/src/views/portfolio/licenses/LicenseList.vue index 4f2cac108..1812a4f09 100644 --- a/src/views/portfolio/licenses/LicenseList.vue +++ b/src/views/portfolio/licenses/LicenseList.vue @@ -41,7 +41,7 @@ export default { methods: { refreshTable: function () { this.$refs.table.refresh({ - url: `${this.$api.BASE_URL}/${this.$api.URL_LICENSE}`, + url: `${this.$api.BASE_URL}/${this.$api.URL_LICENSE_CONCISE}`, silent: true, }); },