mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-05 20:23:16 +08:00
Merge pull request #7958 from aignatov-bio/ai-sci-11175-fix-validation-for-non-grid-box
Remove position validation for non grid box [SCI-11175]
This commit is contained in:
commit
bff0ddc496
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ export default {
|
|||
mixins: [modalMixin],
|
||||
computed: {
|
||||
validObject() {
|
||||
return this.rowId && this.containerId && this.containerId > 0 && this.position;
|
||||
return this.rowId && this.containerId && this.containerId > 0;
|
||||
},
|
||||
createUrl() {
|
||||
return storage_location_storage_location_repository_rows_path({
|
||||
|
|
Loading…
Reference in a new issue