Skip to content

Commit

Permalink
Remove link entry
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwink0 committed Jul 31, 2021
1 parent ee3693b commit 07eeceb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@
<v-row>
<v-col>
<period-setting v-for="i in 7" :key="i" :num="i" :settings="settings"></period-setting>
<link-setting v-for="x in ['Advisory', 'Class Meeting', 'Office Hours', 'Clubs']" :key="x" :name="x" :settings="settings"></link-setting>
</v-col>
</v-row>
<v-row>
Expand Down Expand Up @@ -253,13 +252,11 @@
<script>
import io from "socket.io-client";
import PeriodSetting from "./components/PeriodSetting";
import LinkSetting from "./components/LinkSetting";
export default {
name: "App",
components: {
PeriodSetting,
LinkSetting,
},
data() {
return {
Expand Down
6 changes: 2 additions & 4 deletions src/components/PeriodSetting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@
</v-select>
</v-col>
</v-row>
<v-row no-gutters>
<v-text-field v-model="settings.tempLinks['P'+num]" color="accent" dense placeholder="Custom Link" :rules="[validation.url]" ga-on="focus" :ga-event-category="'link '+num" ga-event-action="input" @blur="changeLink(settings.tempLinks['P'+num])" @focus="$event.target.select()"></v-text-field>
</v-row>

</v-col>
</v-row>
</template>
Expand Down Expand Up @@ -93,4 +91,4 @@ export default {
},
},
}
</script>
</script>

0 comments on commit 07eeceb

Please sign in to comment.