Skip to content

Commit

Permalink
Merge pull request #182 from upsonp/3.3.1.2
Browse files Browse the repository at this point in the history
fix for BTL error issue #181
  • Loading branch information
upsonp authored Jul 16, 2024
2 parents 7d35b1e + fecc414 commit c50a9c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/form_btl_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def get_bottle_load_card(request, database, mission_id, **kwargs):

card.append(card_body := bottle_load_soup.new_tag('div', attrs={'class': 'card-body'}))
card_body.append(ul_file := bottle_load_soup.new_tag('ul', attrs={'class': 'list-group'}))
for error in errors:
for error in errors.filter(file_name=file):
li_error_id = f'li_id_btl_error_{error.pk}'
ul_file.append(li_error := bottle_load_soup.new_tag('li', attrs={'class': 'list-group-item',
'id': li_error_id}))
Expand Down
2 changes: 1 addition & 1 deletion start_dart.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if not exist ".\logs\" (
mkdir logs
)

set dart_version=3.3.1.1
set dart_version=3.3.1.2

REM if this is not a git repo, and the application was installed from zip file we just want to run update
REM if this is a cloned version of the git repo we want to pull from master, then run the update
Expand Down
2 changes: 1 addition & 1 deletion update.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if not exist ".\logs\" (
REM If this was run from a clone repo we can force an update of the python libraries, collectstatic or a
REM migration on the database by changing the update version

set update_version=3.3.1.1
set update_version=3.3.1.2

set first_run=0
set server_path=.\dart_env\Scripts\activate.bat
Expand Down

0 comments on commit c50a9c1

Please sign in to comment.