|
@@ -128,15 +128,13 @@ async function loadZip(file: File){
|
|
|
</div>
|
|
|
</ul>
|
|
|
</p>
|
|
|
-
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
|
|
|
<v-dialog :open="newDialogOpen" @cancel="newDialogOpen = false">
|
|
|
- <p>New project</p>
|
|
|
+ <h5>New project</h5>
|
|
|
+ <p></p>
|
|
|
<div class="form-check">
|
|
|
<input class="form-check-input" type="radio" name="projectType" id="empty" value="empty" v-model="projectType">
|
|
|
<label class="form-check-label" for="empty">Empty Namespace</label>
|
|
@@ -154,14 +152,15 @@ async function loadZip(file: File){
|
|
|
<input class="form-check-input" type="radio" name="projectType" id="emco" value="emco" v-model="projectType">
|
|
|
<label class="form-check-label" for="emco">Full EMCO Project</label>
|
|
|
</div>
|
|
|
- <button @click="newProject()" :disabled="newDialogDisabled">OK</button>
|
|
|
- <button @click="newDialogOpen = false" :disabled="newDialogDisabled">Cancel</button>
|
|
|
+ <div class="btn-group d-flex justify-content-end">
|
|
|
+ <button class="btn btn-light" @click="newDialogOpen = false" :disabled="newDialogDisabled">Cancel</button>
|
|
|
+ <button class="btn btn-light" @click="newProject()" :disabled="newDialogDisabled">OK</button>
|
|
|
+ </div>
|
|
|
</v-dialog>
|
|
|
|
|
|
-
|
|
|
-
|
|
|
<v-dialog :open="newServerConfigOpen" @cancel="newServerConfigOpen = false">
|
|
|
- <p>Server Configuration</p>
|
|
|
+ <h5>Server Configuration</h5>
|
|
|
+ <p></p>
|
|
|
<div v-if="serverConfig">
|
|
|
<div class="input-group mb-3">
|
|
|
<div class="input-group-prepend">
|
|
@@ -214,14 +213,15 @@ async function loadZip(file: File){
|
|
|
<div class="input-group mb-3">
|
|
|
<div class="input-group-prepend">
|
|
|
<input type="checkbox" id="checkbox" v-model="serverConfig.configData.allowAnonymous" />
|
|
|
- <label for="checkbox"> Allow Anonymous</label>
|
|
|
+ <label for="checkbox">Allow Anonymous</label>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
- <button @click="newServerConfigOpen = false" :disabled="newDialogDisabled">Close</button>
|
|
|
+ <div class="btn-group d-flex justify-content-end">
|
|
|
+ <button class="btn btn-light" @click="newServerConfigOpen = false" :disabled="newDialogDisabled">OK</button>
|
|
|
+ </div>
|
|
|
</v-dialog>
|
|
|
</template>
|
|
|
|
|
|
|
|
|
-<style></style>@/util/ServerConfig@/store
|
|
|
+<style></style>
|