You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/Form/fields/FieldSelectIssue.vue
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ export default {
76
76
type:String,
77
77
required:true,
78
78
},
79
-
/** One of the `PKPSubmission::STATUS_` constants. When set to `PKPSubmission::STATUS_QUEUED` or `PKPSubmission::STATUS_PUBLISHED` the issue selection will be hidden. */
79
+
/** One of the `PKPPublication::STATUS_` constants. When set to `PKPPublication::STATUS_QUEUED` or `PKPPublication::STATUS_PUBLISHED` the issue selection will be hidden. */
80
80
publicationStatus: {
81
81
type:Number,
82
82
required:true,
@@ -113,7 +113,7 @@ export default {
113
113
*/
114
114
button() {
115
115
let button =null;
116
-
if (this.publicationStatus!==pkp.const.STATUS_PUBLISHED) {
116
+
if (this.publicationStatus!==pkp.const.PUBLICATION_STATUS_PUBLISHED) {
0 commit comments