Skip to content

Commit

Permalink
Update InitialSetup.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
dinger1986 authored Mar 20, 2024
1 parent 62f0414 commit b72a86e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/views/InitialSetup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,36 @@
:options="allTimezones"
/>
</q-card-section>

<q-card-section class="row items-center">
<div class="col-4 flex items-center">
Company Name:
<q-icon
name="ion-information-circle-outline"
size="sm"
class="q-ml-sm cursor-pointer"
>
<q-tooltip class="text-caption">
Adding your company name here will append it to the
user's full name that appears when doing a remote
control session, for example: 'John Doe - Amidaware
Inc.'
</q-tooltip>
</q-icon>
</div>

<div class="col-2"></div>

<q-input
dense
outlined
v-model="companyname"
class="col-6"
>
</q-input>
</q-card-section>


<q-card-actions align="center">
<q-btn
label="Finish"
Expand Down Expand Up @@ -86,6 +116,7 @@ export default {
allTimezones: [],
timezone: null,
arch: "64",
companyname: "",
};
},
methods: {
Expand All @@ -95,6 +126,7 @@ export default {
client: this.client,
site: this.site,
timezone: this.timezone,
companyname: this.companyname,
initialsetup: true,
};
this.$axios
Expand All @@ -109,6 +141,7 @@ export default {
this.$axios.get("/core/settings/").then((r) => {
this.allTimezones = Object.freeze(r.data.all_timezones);
this.timezone = r.data.default_time_zone;
this.companyname = r.data.mesh_company_name;
});
},
},
Expand Down

0 comments on commit b72a86e

Please sign in to comment.