Skip to content

Commit

Permalink
[2.0.3] [Task Editor] Minor Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Akkadius committed Oct 1, 2022
1 parent 833635f commit d312e09
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.0.3]

### [Task Editor] Minor Fixes

* Fix an issue where `item_id_list` was binding to an integer instead of a string
* Adjust UI elements in sub-editor panes (bordered tables)

## [2.0.2]

### [Connection Manager]
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export class Tasks {
"title": "Example Task 2",
"description": "Example Task 2",
"reward_text": "XP",
"reward_id_list": 0,
"reward_id_list": "",
"cash_reward": 0,
"exp_reward": 10,
"reward_method": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</div>

<table
class="eq-table eq-highlight-rows currency-table"
class="eq-table eq-highlight-rows currency-table bordered"
style="display: table; font-size: 14px; overflow-x: scroll"
v-if="currencies"
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/tasks/TaskEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
<b-input-group v-if="field.fieldType === 'reward_id_list'">
<b-form-input
:id="field.field"
v-model.number="task[field.field]"
v-model="task[field.field]"
class="m-0 mt-1"
v-on="typeof field.onclick !== 'undefined' ? { click: () => field.onclick(field.field) } : {}"
v-b-tooltip.hover.v-dark.right :title="getFieldDescription(field.field)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<div class="mt-3">
<button
class='btn btn-sm btn-outline-warning mb-1 mr-2'
class='btn btn-sm btn-outline-warning btn-dark mb-1 mr-2'
@click="setUnusedId()"
>
<i class="fa fa-arrow-left"></i>
Expand All @@ -23,7 +23,7 @@
</div>

<table
class="eq-table eq-highlight-rows row-table"
class="eq-table eq-highlight-rows row-table bordered"
style="display: table; font-size: 14px; overflow-x: scroll"
v-if="replayGroupIds && replayGroupIds.length > 0"
>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spire",
"version": "2.0.2",
"version": "2.0.3",
"repository": {
"type": "git",
"url": "https://github.com/Akkadius/spire.git"
Expand Down

0 comments on commit d312e09

Please sign in to comment.