Skip to content

Commit

Permalink
Trim code input
Browse files Browse the repository at this point in the history
  • Loading branch information
ltouroumov committed Jun 29, 2024
1 parent dff5d23 commit b67ce82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/viewer/modal/ViewBackpack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function copyExportCode() {
const LEGACY_RX = /^(\w+(\/ON#\d+)?)(,(\w+(\/ON#\d+)?))*$/;
function readImportCode() {
const _code = importCode.value;
const _code = importCode.value?.trim();
console.log(`Import Code ${_code}`);
if (!_code) return;
Expand Down

0 comments on commit b67ce82

Please sign in to comment.