Skip to content

Commit

Permalink
Make sure the server id is a Number in globalOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ssrahn committed Sep 6, 2023
1 parent 6d92a2e commit 36f4fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vueapp/components/Config/GlobalOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default {
this.config_list.server.forEach(server => {
options.push({
value: server.id,
value: Number(server.id),
description: '[#' + server.id + '] ' + server.service_url + ''
})
});
Expand Down

0 comments on commit 36f4fe6

Please sign in to comment.