1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-10 03:20:35 +00:00

Use runtime config

This commit is contained in:
Jonathan Adeline 2023-08-07 11:29:29 +00:00
parent eb4d82ee10
commit 0af095785c
46 changed files with 131 additions and 159 deletions
web-frontend/modules/database/components/view/grid

View file

@ -482,7 +482,7 @@ export default {
},
copyLinkToSelectedRow(event, selectedRow) {
const url =
this.$env.PUBLIC_WEB_FRONTEND_URL +
this.$config.PUBLIC_WEB_FRONTEND_URL +
this.$router.resolve({
name: 'database-table-row',
params: { ...this.$route.params, rowId: selectedRow.id },