Fix Winscope compiling warnings

Test: compile Winscope and see there are no warnings
Change-Id: Iae7d2be4512df0295ce7e94ccfe364a3d741e685
This commit is contained in:
Ioana Moraru
2021-09-27 18:45:09 +00:00
parent f66cc31b0f
commit 67b70b244f
2 changed files with 3 additions and 3 deletions

View File

@@ -46,14 +46,14 @@
<md-field>
<label>Log Levels</label>
<md-select v-model="selectedLogLevels" multiple>
<md-option v-for="level in logLevels" :value="level">{{ level }}</md-option>
<md-option v-for="level in logLevels" :value="level" v-bind:key="level">{{ level }}</md-option>
</md-select>
</md-field>
<md-field>
<label>Tags</label>
<md-select v-model="selectedTags" multiple>
<md-option v-for="tag in tags" :value="tag">{{ tag }}</md-option>
<md-option v-for="tag in tags" :value="tag" v-bind:key="tag">{{ tag }}</md-option>
</md-select>
</md-field>

View File

@@ -22,7 +22,7 @@
</template>
<script>
import Arrow from './Arrow.vue';
import {LocalStore} from '../../localstore.js';
import LocalStore from '../../localstore.js';
var transitionCount = false;