Skip to content

Commit b87f158

Browse files
committed
Add background project priority
1 parent 02cf589 commit b87f158

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/components/projects/CreateProjectForm.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@
155155
<option value="low_priority">
156156
low priority
157157
</option>
158+
<option value="background">
159+
background
160+
</option>
158161
</b-select>
159162
</b-field>
160163
</div>

src/store/modules/project_params.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const state = {
99
project_events: [],
1010
project_note: '',
1111
project_sites: ['common pool'], // can include 'common_pool' or any sitecode
12-
project_priority: 'standard', // can be ['standard', 'time_critical', 'low_priority']
12+
project_priority: 'standard', // can be ['standard', 'time_critical', 'low_priority', 'background']
1313
project_creator: {
1414
username: '',
1515
user_id: ''

0 commit comments

Comments
 (0)