fix settings

This commit is contained in:
sadnub
2020-11-24 23:28:44 -05:00
parent 0d4b2f34ac
commit 9f027b8760
2 changed files with 2 additions and 3 deletions

View File

@@ -2,5 +2,4 @@ PROD_URL = "https://api.example.com"
DEV_URL = "https://api.example.com"
APP_URL = "https://app.example.com"
DEV_HOST = 0.0.0.0
DEV_PORT = 80
DOCKER_BUILD = false
DEV_PORT = 80

View File

@@ -119,7 +119,7 @@ export default {
});
},
copyLink(props) {
const api = getBaseUrl;
const api = getBaseUrl();
copyToClipboard(`${api}/clients/${props.row.uid}/deploy/`).then(() => {
this.notifySuccess("Link copied to clipboard", 1500);
});