Browse Source

fix import

modals-to-spa
stingl 4 years ago
parent
commit
650ee5117e
  1. 2
      index.html

2
index.html

@ -397,7 +397,7 @@
<label class="text-muted">Portalname:</label> <label class="text-muted">Portalname:</label>
<input v-if="!portals || portals.length === 0" class="form-control" @change="updateStorage()" @keydown="updateStorage()" v-model="portal"/> <input v-if="!portals || portals.length === 0" class="form-control" @change="updateStorage()" @keydown="updateStorage()" v-model="portal"/>
<select v-else v-model="portal" class="form-control"> <select v-else v-model="portal" class="form-control">
<option v-for="selectablePortal in portals" value="selectablePortal">{{ selectablePortal }}</option> <option v-for="selectablePortal in portals" :value="selectablePortal">{{ selectablePortal }}</option>
</select> </select>
</div> </div>
</div> </div>