Skip to content

Commit

Permalink
Issue #94 - Added file missing from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
palant committed Jun 1, 2019
1 parent f6702cb commit 8a95f62
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions ui/panel/pages/Settings.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!--
- This Source Code is subject to the terms of the Mozilla Public License
- version 2.0 (the "License"). You can obtain a copy of the License at
- http://mozilla.org/MPL/2.0/.
-->

<template>
<div class="page">
<setting name="autolock" :def-value="true" :focus="true" />
<setting name="autolock_delay" :def-value="10" />
</div>
</template>

<script>
"use strict";
import Setting from "../../components/Setting.vue";
export default {
name: "Settings",
components: {
setting: Setting
}
};
</script>

0 comments on commit 8a95f62

Please sign in to comment.