Skip to content

Commit 03fcce2

Browse files
authored
Merge pull request #536 from citation-file-format/524-don-not-start-browser
do not open web browser automatically
2 parents 7915251 + 89135d5 commit 03fcce2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

quasar.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ module.exports = configure(function () {
8282
devServer: {
8383
https: false,
8484
port: 8080,
85-
open: true // opens browser window automatically
85+
open: false // do not open browser window automatically
8686
},
8787

8888
// https://v2.quasar.dev/quasar-cli/quasar-conf-js#Property%3A-framework

src/components/AuthorCardEditing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export default defineComponent({
240240
default: 0
241241
}
242242
},
243-
setup (props) {
243+
setup () {
244244
const givenNamesRef = ref<HTMLElement | null>(null)
245245
onMounted(() => {
246246
givenNamesRef.value?.focus()

0 commit comments

Comments
 (0)