Commit 9f4ec7a188dc069ca6aadfe82fca503282886831
1 parent
3eecadbdf2
Exists in
admin
url changed
Showing
4 changed files
with
16 additions
and
3 deletions
Show diff stats
config/dev.env.js
... | ... | @@ -7,7 +7,7 @@ module.exports = merge(prodEnv, { |
7 | 7 | // APIurl: '"https://cors-anywhere.herokuapp.com/https://www.gigsfor.me/_functions"', |
8 | 8 | // APIurl: '"https://stg-api.gigsfor.me/api"', |
9 | 9 | APIurl: '"https://stg-api.gigsfor.me/api"', |
10 | - siteUrl: '"http://134.209.156.59:8082"', | |
10 | + siteUrl: '"http://134.209.156.59:8081"', | |
11 | 11 | imageUrl: '"https://stg-api.gigsfor.me/"', |
12 | 12 | fileUploadKey: '"AYqgvDoo4RyBC0STV6og2z"', |
13 | 13 | landbotUrl: '"https://landbot.io/u/H-347617-SIJESECF8DSSQ06L/index.html"', | ... | ... |
config/index.js
... | ... | @@ -14,7 +14,7 @@ module.exports = { |
14 | 14 | |
15 | 15 | // Various Dev Server settings |
16 | 16 | host: '134.209.156.59', // can be overwritten by process.env.HOST |
17 | - port: 8082, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined | |
17 | + port: 8081, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined | |
18 | 18 | autoOpenBrowser: false, |
19 | 19 | errorOverlay: true, |
20 | 20 | notifyOnErrors: true, | ... | ... |
src/components/Profile.vue
... | ... | @@ -443,6 +443,19 @@ |
443 | 443 | v-model="field.fieldValue" |
444 | 444 | /> |
445 | 445 | </div> |
446 | + <div | |
447 | + class="form-group floating-label" | |
448 | + v-if="field.fieldType == 'Number'" | |
449 | + > | |
450 | + <label for="lname" class="lname">{{ field.displayName }}</label> | |
451 | + <input | |
452 | + type="text" | |
453 | + class="form-control" | |
454 | + value="" | |
455 | + placeholder=" " | |
456 | + v-model="field.fieldValue" | |
457 | + /> | |
458 | + </div> | |
446 | 459 | |
447 | 460 | <div |
448 | 461 | class="form-group floating-label" | ... | ... |
src/main.js
... | ... | @@ -40,7 +40,7 @@ Vue.config.productionTip = false |
40 | 40 | // http://174.138.121.70:3006/pg |
41 | 41 | // http://174.138.121.70:3006/pd |
42 | 42 | Vue.prototype.moment = moment |
43 | -axios.defaults.baseURL = 'http://174.138.121.70:3006/pg' | |
43 | +axios.defaults.baseURL = 'https://api.productgrowth.org/pg' | |
44 | 44 | |
45 | 45 | /* eslint-disable no-new */ |
46 | 46 | new Vue({ | ... | ... |