Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix squonk access control (FE) #1020

Open
phraenquex opened this issue Dec 20, 2022 · 9 comments
Open

Fix squonk access control (FE) #1020

phraenquex opened this issue Dec 20, 2022 · 9 comments

Comments

@phraenquex
Copy link
Collaborator

No description provided.

@boriskovar-m2ms
Copy link
Collaborator

boriskovar-m2ms commented Jan 10, 2023

Related to #937

In the F/E landing page, column header should be "visit" (target_access_string in the project record we get from /api/project), and make it a deployment variable, so that different deployments (i.e. not Diamond) can reconfigure this as required, to correspond to whatever authentication mechanism they have.

Show only target-target_access_string tuples for for the user is authorised.
ALSO show if they are public projects.

@alanbchristie from the low level design it's not clear how to get information that given target is associated with given visit nor if the project is public or private.

File Transfers and Job Requests will require a “access” identity (an integer that’s simply the Fragalysis Project record ID) and a “session_project” identity (an integer that’s simply the Fragalysis SessionProject record ID)

Hover over "Project" (sessionproject:target_access_string displayed in the header next to the target in the header of the preview page) should ideally pop up that cute dropdown in #1010 (requires having #1010 implemented).

@alanbchristie
Copy link
Collaborator

Public/Private

I'm not sure how the backend determines this either. It uses ISPyB to get a list of "visits"/"target access strings" (TAS for short) for a given user. What's obtained is simply a list of strings. The B/E then filters Project (Proposal) records based on the that list. The Project (Proposal) has fields for TAS and init_date

Target/Project correlation

The existing /api/targets endpoint contains a list of Project IDs in its response (project_id). If the user has access to the corresponding project it should be in the /api/projects response. (I have updated the LLD to add this clarification)

@boriskovar-m2ms
Copy link
Collaborator

Oh yes you're right. I completely forgot about this. Brain still restarting after two weeks.

@boriskovar-m2ms
Copy link
Collaborator

boriskovar-m2ms commented Jan 12, 2023

@alanbchristie @phraenquex

Public/Private

according to this:

Yes, show only target-target_access_string tuples for for the user is authorised.
ALSO show if they are public projects.
For that: introduce a column "open_to_public", which is boolean, if TRUE, pass that to front-end, so it can annotate the projects.

For current targets: provide a list of targets (and dates if available) - stick in this ticket - and we (Frank, Daren) will flush out the target_access_string from ISpyB.

the info whether the project is public or private is not part of the information we get from ISPyB and this will be information stored only in backend with some UI to set this value?

Or if target_access_string is set to OPEN then it means that it's open?

image

Or better project which is closed will be returned with list of user_ids which are authorized to access the project? How can I actually create additional test projects? Because now it seems that I have only one and most likely open project.

@phraenquex
Copy link
Collaborator Author

The open_to_public field must be set one-by-one. For now it will be by an admin - the UI will come later, the spec is somewhat non-trivial (for legal reasons).

"target_access_string" is unfortunately currently the place where it's labelled "OPEN", but that's a very very bad design mistake from the heat of 2020 pandemic. So it's urgent that it be fixed.

I assume you're coordinating directly with @alanbchristie (Slack or similar).

@alanbchristie
Copy link
Collaborator

With regard to Public/Provate the current set of Project records on the production site is as follows,
in the form <id>|<proposal/title>|<init_date>: -

1|private_dummy_project|2019-04-02 09:02:27.951796 +00:00
2|OPEN|2019-04-10 09:40:03.881378 +00:00
3|19400|2019-04-10 15:58:13.780068 +00:00
4|19400-1|2019-04-10 15:58:13.806151 +00:00
5|13385|2019-04-10 16:01:10.512515 +00:00
6|13385-87|2019-04-10 16:01:10.533086 +00:00
7|20179|2019-04-10 16:01:11.280015 +00:00
8|20179-1|2019-04-10 16:01:11.302760 +00:00
9|20289|2019-04-10 16:02:32.496304 +00:00
10|20289-1|2019-04-10 16:02:32.519416 +00:00
11|19990|2019-04-10 16:05:18.851857 +00:00
12|19990-1|2019-04-10 16:05:18.939255 +00:00
13|18145|2019-04-10 16:07:58.914098 +00:00
14|18145-44|2019-04-10 16:07:58.941297 +00:00
15|16974|2019-04-10 16:09:40.610729 +00:00
16|16974-1|2019-04-10 16:09:40.631740 +00:00
17|16949|2019-04-10 16:13:08.913539 +00:00
18|16949-4|2019-04-10 16:13:08.934918 +00:00
19|16949-12|2019-04-10 16:13:09.813017 +00:00
20|19572|2019-04-10 16:14:17.683007 +00:00
21|19572-1|2019-04-10 16:14:17.701865 +00:00
22|18944|2019-04-17 16:01:40.710275 +00:00
23|18944-1|2019-04-17 16:01:40.735978 +00:00
24|18954|2019-10-25 13:11:03.747988 +00:00
25|18954-1|2019-10-25 13:11:03.772062 +00:00
26|27001|2020-06-30 11:59:49.330344 +00:00
27|27001-2|2020-06-30 11:59:49.410035 +00:00
28|22717|2021-02-19 13:53:10.551660 +00:00
29|lb22722|2021-10-04 12:03:26.353396 +00:00
30|22722|2021-10-06 16:19:47.062029 +00:00
31|lb27156|2021-11-12 13:30:01.739906 +00:00
32|27156|2021-11-15 13:23:12.738109 +00:00

boriskovar-m2ms added a commit that referenced this issue Jan 17, 2023
@phraenquex
Copy link
Collaborator Author

phraenquex commented Jan 17, 2023

For direct-access URLs:

  • For open projects, allow there to be no target-access-string
    • then search through the open projects, and if there is more than one with that targetID, present user with a choice (modal?) - show datestamp.
  • For closed projects, MUST have target-access-string
    • If no-one logged in, then first get person to log in
    • then check if that logged-in person has access
    • (Don't worry about historic snapshots for non-open projects. That's their problem, it was always Alpha.)

Path for target may as well fully qualify the target-access-string, e.g.
https://fragalysis-tibor-default.xchem-dev.diamond.ac.uk/viewer/react/preview/tas/lb20133-5/target/ATAD2A/

Behaviour if access revoked to "session-project":

  • Show a modal, saying:
    • "You don't have access to project; please contact the proposal PI or Alternative Contact. If you previously had access, likely your access was revoked - your PI/AC can resolve this."
  • String should be configuratble for the deployment/stack - this one is Diamond-specific.

@phraenquex
Copy link
Collaborator Author

To generate a closed project for Boris to test:

  • Daren assigns Boris to any old visit (that he is entitled to)
  • use the visit id of something that Fragalysis has not yet seen
  • upload anything - keep it small (Warren)
  • send the data to Boris too (Warren)

Tell Boris the target/TAS.

boriskovar-m2ms added a commit that referenced this issue Feb 20, 2023
commit 19b3910
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Feb 20 13:33:18 2023 +0100

    - new dev BE

commit af427c7
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Feb 17 08:44:14 2023 +0100

    Update package.json

    just to trigger build action

commit 4cb19eb
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Feb 16 09:09:27 2023 +0100

    Update package.json

    just to trigger build action

commit 7612967
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Feb 15 14:01:32 2023 +0100

    Update package.json

    just to trigger build action

commit 4e8b27d
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Feb 14 08:50:44 2023 +0100

    - fixed direct links and direct download links

commit c08da4b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 9 14:02:18 2023 +0100

    - fixed job name

commit 4b9a491
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 9 13:28:20 2023 +0100

    - added fragmenstein-combine-multi-scoring.json

commit ca4f946
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 9 13:25:35 2023 +0100

    - checkpoint

commit b43373e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 9 10:43:27 2023 +0100

    - fixed problem where UI would crash if there was a problem during job file transfer of job launch

commit 3618b10
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 9 09:54:36 2023 +0100

    - fixed bad project capture from url

commit 7d58889
Merge: 11180a5 4fc7f7b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Feb 8 09:27:51 2023 +0100

    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

commit 11180a5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Feb 8 09:26:31 2023 +0100

    - prevent crash when there is a project associated with target which user is not authorized to see

commit 4fc7f7b
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Feb 8 07:25:12 2023 +0100

    Update package.json

    just to trigger build action

commit 2b2665c
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 15:43:38 2023 +0100

    Update package.json

    just to trigger the build action

commit d0d429c
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 15:20:25 2023 +0100

    Update package.json

    just to trigger the build action

commit fcf377b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 14:51:17 2023 +0100

    - fixed problem when job config windows closes on error

commit c9e39f4
Merge: 5a3d56b 0f8e702
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 13:19:16 2023 +0100

    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

commit 5a3d56b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 13:18:30 2023 +0100

    - now sending id of the project and not target_access_string

commit 0f8e702
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 12:59:19 2023 +0100

    Update package.json

    just to trigger build action

commit 585076d
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 12:39:19 2023 +0100

    - fixed problem when project pane was not showing up right after a project was created

commit fa7fd75
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 12:08:23 2023 +0100

    - fix for missing project pane

commit ba0a1fe
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Feb 2 09:05:50 2023 +0100

    - version for job execution - broken UI

commit 51555e1
Merge: 51e97af a42cad7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Feb 1 13:58:27 2023 +0100

    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

commit 51e97af
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Feb 1 13:57:49 2023 +0100

    - partial implementation of #1020

commit a42cad7
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jan 26 08:34:01 2023 +0100

    Update package.json

    just to trigger build action

commit 96c0216
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Jan 25 09:39:06 2023 +0100

    Update package.json

    just to trigger build action

commit c7de9cf
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Jan 24 15:10:11 2023 +0100

    Update package.json

    just to trigger the build action

commit e8e5657
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Jan 24 14:04:56 2023 +0100

    Update package.json

    just to trigger build

commit 24dc912
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jan 24 12:49:58 2023 +0100

    - sensitive data moved to .env file

commit a98c517
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jan 24 12:49:06 2023 +0100

    - added .env to gitignore

commit 13b4bed
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jan 24 12:47:56 2023 +0100

    - mending an error

commit 5b74eb4
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jan 18 09:52:19 2023 +0100

    - checkpoint

commit d4b88df
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jan 17 10:10:27 2023 +0100

    - initial implementation #1020
@phraenquex
Copy link
Collaborator Author

For this release, just add a very simple bit of text to the Error modal that tells you you can't access target/target_access_string.

"If this is unexpected, do retry your action, as there is an ongoing sporadic mis-authentication (being debugged)."

@boriskovar-m2ms I assume this is a trivial fix - please confirm/comment.

boriskovar-m2ms added a commit that referenced this issue Jun 7, 2023
commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
Merge: d266f99b 949f4734
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Apr 26 11:17:58 2023 +0200

    Merge branch 'staging' into ms-2022-08-18-yellow

commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Apr 26 10:50:48 2023 +0200

    - fixed problem for 'add button to job table to copy snapshot associated with the job run'

commit 62784948247ed7f0521b10418b1b8a271e7062f0
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Apr 26 09:43:11 2023 +0200

    - add button to job table to copy snapshot associated with the job run

commit 949f47340369a671516a7c6317f8f7e35ba86984
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Apr 24 14:47:39 2023 +0200

    Ms 2022 08 18 yellow (#351)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
Merge: eaadb729 8d437c3f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Apr 24 14:35:37 2023 +0200

    Merge branch 'staging' into ms-2022-08-18-yellow

commit eaadb729f90441417c899cf4869e26a1b789bb42
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Apr 24 12:39:23 2023 +0200

    Update package.json

    to trigger build action

commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Apr 24 11:26:05 2023 +0200

    Update package.json

    just to trigger build action

commit 09007706e2ec26c6006d7d19a756129d093ac306
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Apr 24 09:36:38 2023 +0200

    - schema expansion test

commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 17:00:05 2023 +0200

    Ms 2022 08 18 yellow (#350)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

commit 7790dfbc261a302018423ce1a506eb33eb48d683
Merge: bf42cc20 45438127
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 16:57:36 2023 +0200

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit bf42cc20b514c4b3708b606557cb576324f02a20
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 16:57:18 2023 +0200

    - fixed bad merge from staging

commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 15:47:17 2023 +0200

    Ms 2022 08 18 yellow (#349)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

commit 45438127c520d201677dd1b5c1fd876cdfb035e4
Merge: 73b5d4c7 dcbf19fd
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 15:46:11 2023 +0200

    Merge branch 'staging' into ms-2022-08-18-yellow

commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
Merge: b74587f0 1447b079
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 15:28:34 2023 +0200

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 15:27:49 2023 +0200

    - hopefully fixed problem with reloading older projects

commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 12:42:14 2023 +0200

    Ms 2022 08 18 yellow (#348)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
Merge: b774ac60 d7b5e5c2
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 12:41:03 2023 +0200

    Merge branch 'staging' into ms-2022-08-18-yellow

commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Apr 11 12:05:53 2023 +0200

    frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Apr 6 14:20:00 2023 +0200

    - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Apr 6 10:43:08 2023 +0200

    Ms 2022 08 18 yellow (#347)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

commit 17e89cefe8264584ebe0fadc637a1fac542704ac
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Apr 6 10:23:27 2023 +0200

    - can't go to squonk job execution page if the url is not available

commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Apr 6 09:11:52 2023 +0200

    Minor fixes before the release (#346)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

commit c8b5f20dd521c7007f08531736541ca84b041a85
Merge: 8d500638 2cd48e04
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Apr 5 14:35:17 2023 +0200

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit 8d50063887bc2f6335550f15fe69cc93b17be30e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Apr 5 14:34:49 2023 +0200

    - new BE image

commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
Merge: 0fddd791 b20adee8
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Apr 5 13:00:20 2023 +0200

    Merge branch 'staging' into ms-2022-08-18-yellow

commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Apr 5 12:09:36 2023 +0200

    Update package.json

    triggering the build action

commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Apr 5 10:44:24 2023 +0200

    - before the release fixes

commit b10160928bff787161a140e4cffd8aa783a4c482
Merge: f6699d10 9f5f2b7c
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Mar 31 09:38:39 2023 +0200

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Mar 31 09:37:22 2023 +0200

    - minor typo fix

commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Mar 24 14:00:10 2023 +0100

    Update package.json

    just to trigger build action

commit 5a37013c71469f9433c36d956174b1efc1e698ab
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Mar 24 12:43:27 2023 +0100

    Update package.json

    to trigger build action

commit b54cdaa4ea816719128c07939a14a99152a8e990
Merge: 5dfc38be d6d5216d
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Mar 24 11:36:29 2023 +0100

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Mar 24 11:35:57 2023 +0100

    - updated build-dev.yaml

commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Mar 24 08:52:55 2023 +0100

    Update package.json

    trigger build action

commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Mar 24 08:46:51 2023 +0100

    Update package.json

    to trigger build action

commit b20adee8140c7f46573eb5e7525e97427d23d4d4
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Mar 16 17:29:15 2023 +0100

    Ms 2022 08 18 yellow (#345)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
Merge: d777f117 4cb92f6c
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Mar 16 10:50:04 2023 +0100

    Merge branch 'staging' into ms-2022-08-18-yellow

commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Mar 16 10:17:34 2023 +0100

    - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

commit ae0cbdc8540aa440c776be3b84508c710a215d36
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Mar 16 09:01:48 2023 +0100

    - fixed bugs found in staging

commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Mar 9 13:05:06 2023 +0100

    Ms 2022 08 18 yellow (#344)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

commit bc13d845aa206aa7d8d151a8bb53f53335761084
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Mar 9 10:38:18 2023 +0100

    Update package.json

    triggering build action

commit 49d1ad57042d353f76c7368944601a8d64e44596
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Mar 9 10:32:30 2023 +0100

    Update package.json

    to trigger build action

commit fd0df1c021010f4f5e028090493464721b8b2600
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Mar 9 09:11:44 2023 +0100

    - added message when access to squonk is denied

commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Mar 8 14:35:57 2023 +0100

    - fixed problem with id

commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Mar 8 14:18:47 2023 +0100

    - authorize user for viewing squonk job

commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Mar 8 12:58:15 2023 +0100

    - added more logs

commit d97a512d75aa621be77ee69b547b21e1653386e1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Mar 8 12:19:18 2023 +0100

    fixed problem with entries function

commit 7e28e41d96e57998b979752d3651304bf36713c9
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Mar 8 12:13:08 2023 +0100

    - added debug logs

commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Mar 8 11:29:23 2023 +0100

    - implemented #890

commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 18:50:08 2023 +0100

    - fixes because can't debug this locally

commit 59779b6b80ec7e21af68b219a543a017aa837b14
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 18:29:05 2023 +0100

    - trying to fix a bug with inputs

commit 76ccc089efc43589bb381ea6589567dce538aa8b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 18:12:34 2023 +0100

    - reworked show inputs in jobs table

commit e862c726c81b0328cc9b7538d9820481b7d85cd8
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 16:46:29 2023 +0100

    - added debug info

commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 16:33:00 2023 +0100

    - added debug info

commit c4b11af95a56786493e13735ac92b1b1f766af79
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 16:13:41 2023 +0100

    - added debug info

commit 6adc86d4f95a362b38747e001f55bde2a104baff
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 15:53:49 2023 +0100

    - added debug info

commit e42ed05162106109c927e80620d67b5af31b7ef1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 15:34:10 2023 +0100

    - added debug info

commit 39034c54b97f4da301365c69d985640a66c75469
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 15:09:04 2023 +0100

    - added debug info

commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Sun Mar 5 14:48:45 2023 +0100

    - added debug info

commit 13a00cf2ba8f4ae13de4865096f9def349acd158
Merge: 0a36ae5c d0317f60
Author: rsanchezgarc <rubensanchezgarc@gmail.com>
Date:   Tue Feb 21 20:43:31 2023 +0000

    Merge pull request #341 from m2ms/ms-2022-08-18-yellow

    Ms 2022 08 18 yellow release

commit d0317f607def3b6e1a5651554b338161fce4f040
Merge: 53164d21 8c4ca1d0
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Feb 20 13:58:48 2023 +0100

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit 53164d21b23e7a918a772ced6292817b4306031e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Feb 20 13:57:25 2023 +0100

    Squashed commit of the following:

    commit 19b3910d84f9707b8047524cfe44dfa1f8696644
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:33:18 2023 +0100

        - new dev BE

    commit af427c71d9499c975e12b314202bdb0f0ec13826
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Feb 17 08:44:14 2023 +0100

        Update package.json

        just to trigger build action

    commit 4cb19eb371b0147dfc51b704a36dba842543d311
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Feb 16 09:09:27 2023 +0100

        Update package.json

        just to trigger build action

    commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Feb 15 14:01:32 2023 +0100

        Update package.json

        just to trigger build action

    commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Feb 14 08:50:44 2023 +0100

        - fixed direct links and direct download links

    commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 9 14:02:18 2023 +0100

        - fixed job name

    commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 9 13:28:20 2023 +0100

        - added fragmenstein-combine-multi-scoring.json

    commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 9 13:25:35 2023 +0100

        - checkpoint

    commit b43373e1c228d9e46f4c831fc46269d614013e92
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 9 10:43:27 2023 +0100

        - fixed problem where UI would crash if there was a problem during job file transfer of job launch

    commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 9 09:54:36 2023 +0100

        - fixed bad project capture from url

    commit 7d588895cebd0e363aa5d62b36770499364aef06
    Merge: 11180a5c 4fc7f7bd
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Feb 8 09:27:51 2023 +0100

        Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

    commit 11180a5c0142ea18624ae14ddaad16793fdcb435
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Feb 8 09:26:31 2023 +0100

        - prevent crash when there is a project associated with target which user is not authorized to see

    commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Feb 8 07:25:12 2023 +0100

        Update package.json

        just to trigger build action

    commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 15:43:38 2023 +0100

        Update package.json

        just to trigger the build action

    commit d0d429c473307ce2bfa825ad9e556084082accd8
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 15:20:25 2023 +0100

        Update package.json

        just to trigger the build action

    commit fcf377b863abf9110e1c0ce752b29bce073349cf
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 14:51:17 2023 +0100

        - fixed problem when job config windows closes on error

    commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
    Merge: 5a3d56bf 0f8e702a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 13:19:16 2023 +0100

        Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

    commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 13:18:30 2023 +0100

        - now sending id of the project and not target_access_string

    commit 0f8e702a023e2f786c5ba46eab2205f158a75480
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 12:59:19 2023 +0100

        Update package.json

        just to trigger build action

    commit 585076db67dc32b58083c184e1ca11a6dddc434b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 12:39:19 2023 +0100

        - fixed problem when project pane was not showing up right after a project was created

    commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 12:08:23 2023 +0100

        - fix for missing project pane

    commit ba0a1fe55bd53f719d31d795d71877d81366cac9
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Feb 2 09:05:50 2023 +0100

        - version for job execution - broken UI

    commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
    Merge: 51e97af1 a42cad71
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Feb 1 13:58:27 2023 +0100

        Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

    commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Feb 1 13:57:49 2023 +0100

        - partial implementation of #1020

    commit a42cad7193b8c8f02c04378bba01f6f44114ec88
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jan 26 08:34:01 2023 +0100

        Update package.json

        just to trigger build action

    commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Jan 25 09:39:06 2023 +0100

        Update package.json

        just to trigger build action

    commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 24 15:10:11 2023 +0100

        Update package.json

        just to trigger the build action

    commit e8e5657cc5f7beecf5813040210605b6cf410cef
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 24 14:04:56 2023 +0100

        Update package.json

        just to trigger build

    commit 24dc912bfdae3bec9c52867f2d638754635cecbb
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 24 12:49:58 2023 +0100

        - sensitive data moved to .env file

    commit a98c51751368104300a872f116cc22acc09cec44
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 24 12:49:06 2023 +0100

        - added .env to gitignore

    commit 13b4bed082612315afc948192fe758fb42edf63d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 24 12:47:56 2023 +0100

        - mending an error

    commit 5b74eb4326389e11b923b560f6603586bfc3b87c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 18 09:52:19 2023 +0100

        - checkpoint

    commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 17 10:10:27 2023 +0100

        - initial implementation #1020

commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Jan 16 11:35:37 2023 +0100

    Update package.json

    just to trigger build action

commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Jan 13 10:47:51 2023 +0100

    Update package.json

    just to trigger build action

commit 0d6abaa08dc7a174d915d33e21a1667accd39423
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jan 12 10:18:23 2023 +0100

    Update package.json

    just to trigger build action

commit d5905966cb9bf2994f93668911873108832d7578
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jan 11 11:02:25 2023 +0100

    - forgot to reset debug constants

commit df7057032baa70df6451b7faf0a232fa75a1e55b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jan 11 08:05:23 2023 +0100

    - minor fix for upload_status

commit 698d123634ded171f161c3bb9f27e4e1600730be
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jan 10 15:42:30 2023 +0100

    - minor fix for upload_status

commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jan 10 15:26:03 2023 +0100

    - upload_failed now taken into the account

commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Jan 10 13:35:25 2023 +0100

    Update package.json

    - just to trigger build action

commit e6fbd6d213418dfd9708e206da341e8e37e776c3
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Jan 10 11:54:17 2023 +0100

    Update package.json

    just to trigger build action

commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Dec 23 13:01:20 2022 +0100

    - updated README.md

commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
Merge: 6a7a0dda 782b84b5
Author: rsanchezgarc <rubensanchezgarc@gmail.com>
Date:   Tue Dec 20 18:11:19 2022 +0000

    Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

    Animate to new orientation matrix first

commit 5504bd464e1d699833f258b994e344cb339cb234
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Dec 20 08:06:06 2022 +0100

    Squashed commit of the following:

    commit cec398dcf0a14f7e433b2baec849e29001358839
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Dec 20 08:00:30 2022 +0100

        -

    commit 885f08e18f7983723a0944bd90cec646c869ee89
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Dec 16 13:18:38 2022 +0100

        - bug fix in progress for #970

    commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 15 16:30:41 2022 +0100

        - now user can insert list of strings as an input for a job

    commit 15e97d0c57a2ab0c683077ea1f588db63645536f
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:07:28 2022 +0100

        - initial implementation of #970

    commit 89010ea549ade47427b6454c3b92a37dff0c449b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:26:35 2022 +0100

        - #1001

commit 6fa2432f7226be0d54f7ce608719c0d59863d367
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Dec 19 10:09:59 2022 +0100

    Squashed commit of the following:

    commit 553235691beedd110072226ff20b6b49a6aad1ee
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:06:41 2022 +0100

        - orient first then remove/add stuff

commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
Merge: eaa4ccbd f07779ce
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Dec 19 10:08:49 2022 +0100

    Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Dec 19 10:08:30 2022 +0100

    Squashed commit of the following:

    commit 553235691beedd110072226ff20b6b49a6aad1ee
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:06:41 2022 +0100

        - orient first then remove/add stuff

commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
Merge: 356e625e f07779ce
Author: rsanchezgarc <rubensanchezgarc@gmail.com>
Date:   Fri Dec 16 12:44:21 2022 +0000

    Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

    Ms 2022 08 18 yellow wo 970

commit f07779ce30667465ea1aba424085e8978827641a
Merge: 57336b82 dcc2c882
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Fri Dec 16 13:24:09 2022 +0100

    Merge branch 'master' into ms-2022-08-18-yellow-wo-970

commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Dec 15 16:32:57 2022 +0100

    Squashed commit of the following:

    commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 15 16:30:41 2022 +0100

        - now user can insert list of strings as an input for a job

    commit 15e97d0c57a2ab0c683077ea1f588db63645536f
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:07:28 2022 +0100

        - initial implementation of #970

    commit 89010ea549ade47427b6454c3b92a37dff0c449b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:26:35 2022 +0100

        - #1001

commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
Merge: 8ac386cd 57336b82
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Dec 14 06:28:30 2022 +0100

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Dec 14 06:27:11 2022 +0100

    Squashed commit of the following:

    commit 15e97d0c57a2ab0c683077ea1f588db63645536f
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:07:28 2022 +0100

        - initial implementation of #970

    commit 89010ea549ade47427b6454c3b92a37dff0c449b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:26:35 2022 +0100

        - #1001

commit 57336b825cb95aecb3dfff78ab571bb85e906073
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Dec 8 11:41:44 2022 +0100

    Update package.json

    just to trigger action

commit c6c3ed0b16414d528684d63befca6a01634683d0
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Dec 7 11:57:33 2022 +0100

    Update package.json

    just to trigger action

commit 614b01c80882557160777ba96abc92c2d328112e
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Dec 7 09:38:38 2022 +0100

    Update package.json

    just to trigger action

commit c0d2b3858d074b33303eef48e42f11e7eefac474
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Dec 7 08:39:23 2022 +0100

    Update package.json

    just to trigger action

commit bbf6f91e8498586d666204c3493405c4ca4e7268
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Dec 7 08:31:30 2022 +0100

    Update package.json

    just to trigger rebuild

commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Dec 5 08:28:17 2022 +0100

    Squashed commit of the following:

    commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:14:43 2022 +0100

        - #1001

commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Dec 1 09:10:59 2022 +0100

    Squashed commit of the following:

    commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 1 09:08:03 2022 +0100

        - implemented #1012

commit f8eb4067e0ece9d170e3405bebe21a689927442c
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Nov 29 10:24:56 2022 +0100

    Squashed commit of the following:

    commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 29 10:22:31 2022 +0100

        - fixed #1013

    commit db173bcdd76574055d5132ec3cd34012a727656d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 14:39:16 2022 +0100

        Squashed commit of the following:

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
Merge: 8712fddb 87870aa1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Nov 28 13:40:54 2022 +0100

    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Nov 28 13:39:15 2022 +0100

    Squashed commit of the following:

    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:30:45 2022 +0100

        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 08:16:31 2022 +0100

        - #876 seems to be done

commit 87870aa192d10344ae7eb384618ef137986862d0
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Nov 28 09:36:12 2022 +0100

    Update package.json

    just to trigger build action

commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Nov 28 09:08:21 2022 +0100

    Squashed commit of the following:

    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 08:16:31 2022 +0100

        - #876 seems to be done

commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
Merge: 0530324b 7b7cbe99
Author: rsanchezgarc <rubensanchezgarc@gmail.com>
Date:   Mon Nov 14 09:59:45 2022 +0000

    Merge pull request #329 from m2ms/#977-ngl

    Fast switching between snapshots

commit 7b7cbe99952000f6c550727e082cb920cafa144c
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Nov 8 10:04:33 2022 +0100

    - #977 - fixed issue with ngl settings were not saved and restored

commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Nov 7 10:14:18 2022 +0100

    Squashed commit of the following:

    commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Nov 3 08:01:05 2022 +0100

        - fixed ngl view was not tracked

commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
Merge: 931a5aea 5746062a
Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
Date:   Thu Oct 27 15:51:39 2022 +0100

    Merge pull request #325 from xchem/production

    Action doc tweaks

commit 5746062aacabb5201feefed8ea09e3e34066a175
Merge: b0e75d17 dc2ff23d
Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
Date:   Thu Oct 27 15:50:50 2022 +0100

    Merge pull request #324 from alanbchristie/production

    Action doc tweaks

commit dc2ff23d773157c74f864931e06ccb0fd21cf335
Author: Alan Christie <alan.christie@matildapeak.com>
Date:   Thu Oct 27 15:48:48 2022 +0100

    Add doc for production workflow

commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
Author: Alan Christie <alan.christie@matildapeak.com>
Date:   Thu Oct 27 15:35:27 2022 +0100

    Tweak action docs

commit 931a5aea583997a80bab66d8099f743529f8d98f
Merge: cb4246e7 b0e75d17
Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
Date:   Thu Oct 27 12:51:21 2022 +0100

    Merge pull request #323 from xchem/production

    Production now triggers stack

commit b0e75d174217c507b2db2f4d6329e4ed2315e887
Merge: cb4246e7 ac3297e4
Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
Date:   Thu Oct 27 12:50:08 2022 +0100

    Merge pull request #322 from alanbchristie/production

    Production now triggers stack

commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
Author: Alan Christie <alan.christie@matildapeak.com>
Date:   Thu Oct 27 12:49:11 2022 +0100

    Production now triggers stack

    Fix for BE tag

commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
Merge: dcc2c882 dec6f785
Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
Date:   Thu Oct 27 11:15:06 2022 +0100

    Merge pull request #321 from alanbchristie/production

    CI changes for new branch policy

commit dec6f785663f6e3050262c5a4b4704109d2e446a
Author: Alan Christie <alan.christie@matildapeak.com>
Date:   Thu Oct 27 10:58:08 2022 +0100

    Removed personal repo references

commit 2147aa18af1211a32f55e228c1023491008204ac
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Oct 26 10:00:07 2022 +0200

    - updated squonk project id for dev stacks

commit b2bc6e79197baa4c7336822fca2bfbf54eded377
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Oct 24 16:47:24 2022 +0200

    - first real version of the final implementation of ticket #977
    - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Oct 20 07:32:33 2022 +0200

    - nearly complete issue #977

commit dcc2c8824378b69e118564a664b332456d5632e4
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Sep 29 12:48:42 2022 +0200

    edited in correct squonk project id

commit 725f6d5267d568afd34f29f22b0869458d759832
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Sep 29 12:47:31 2022 +0200

    removed Upload button from Job popup (#320)

    * - initial commit

    * - checkpoint

    * - new backend

    * Update package.json

    bumped version to 0.10.109

    * Update package.json

    bumped version to 0.10.111

    * Update package.json

    version bumped to 0.10.112

    * Update package.json

    bumped version to 0.10.113

    * Update package.json

    bumped version to 0.10.114

    * Update package.json

    bumped version to 0.10.115

    * - added new back-end

    * Squashed commit of the following:

    commit 949573bd930afaa0171a728f05dafa08c2425341
    Merge: deb0d1c3 74ea6613
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jul 14 06:56:52 2022 +0200

        Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

    commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jun 9 10:21:43 2022 +0200

        - mics changes

    commit e2a00641039dd34b348ce2084eefd8f33ae04343
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jun 6 06:05:49 2022 +0200

        Squashed commit of the following:

        -bumped version to 0.10.93

        commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 11:53:32 2022 +0200

            #883 - Remove unused selection action

        commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 11:43:17 2022 +0200

            #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

        commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 11:10:44 2022 +0200

            #883 - Remove associatedDownloadTagName from selectionReducers

        commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 10:54:57 2022 +0200

            #883 - Remove displayedMoleculesInHitNav from selectionReducers

        commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 10:08:28 2022 +0200

            #883 - Remove displayAllInNGLList from selectionReducers

        commit f3b3b10a879447705b2709b88d48b62fe50e14cc
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 09:59:23 2022 +0200

            #883 - Remove listAllList from selectionReducers

        commit 02aa5955918abace2d5473e89bb9260ff10d7338
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 09:40:29 2022 +0200

            #883 - Move categoryList from selectionReducers to apiReducers

        commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jun 1 08:43:26 2022 +0200

            #883 - Move tagList from selectionReducers to apiReducers

    commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Mon Jul 11 14:42:22 2022 +0200

        #885 - Add the possibility to recompile variables before job launching

    commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jun 9 10:21:43 2022 +0200

        - mics changes

    commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Mon Jun 6 12:28:04 2022 +0200

        #885 - Adjust and compile schema

    commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Fri Jun 3 12:53:17 2022 +0200

        #885 - Reuse the merged schema in JobVariablesDialog

    commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Fri Jun 3 08:36:34 2022 +0200

        #885 - Add new job definition

    * updated fragmentstein job spec

    Squashed commit of the following:

    commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Mon Jul 11 14:42:22 2022 +0200

        #885 - Add the possibility to recompile variables before job launching

    commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Mon Jun 6 12:28:04 2022 +0200

        #885 - Adjust and compile schema

    commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Fri Jun 3 12:53:17 2022 +0200

        #885 - Reuse the merged schema in JobVariablesDialog

    commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Fri Jun 3 08:36:34 2022 +0200

        #885 - Add new job definition

    * - changed default value for output file

    * Update package.json

    bumped version to 0.10.116

    * - new backend test

    * Update package.json

    bumped version to 0.10.120

    * Update package.json

    bumped version to 0.10.122

    * - new version of the backend added

    * Squashed commit of the following:

    commit c6c605ed21996d470a36b0de0a51a4e145792884
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 4 09:25:18 2022 +0200

        - fixed #949

    commit 2118900c0f7b92aa3ff7b6a1aefd943ab506c287
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 3 15:42:41 2022 +0200

        - fixed problem where there are no selected inputs for a job

    commit db6f6436af34cfead10d7e788bf4d9c3a9029294
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 3 08:47:55 2022 +0200

        - fixed #947
        - bumped version to 0.10.124

    commit ff46c9cfd817aea7440a94f6ca115604f43dfc71
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Jul 29 09:19:30 2022 +0200

        - pushed remote debugging on by accident

    commit ae2c855315830e02407fac25febcc00d28366438
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jul 28 14:53:44 2022 +0200

        - bumped version to 0.10.122

    commit 9f9c0e3ed7ea51b6e1c2827ebe975b5f96c4f8f8
    Merge: e43d812c 93455bdf
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jul 28 14:53:12 2022 +0200

        Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

    commit e43d812c8db635949389722976af03f63ffd0fa0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jul 28 14:50:59 2022 +0200

        - fixed #928
        - partial fix (one of the cases) #939

    commit 93455bdf313191b865bd5ccb9eda4c160f9dd1cd
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Thu Jul 28 13:00:24 2022 +0200

        Adjust layout behaviour

    commit 91171830ff366d1a3fd7406cfc5472257c9a565b
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Thu Jul 28 11:33:29 2022 +0200

        Adjust overflows

    commit fcd15f864eddc0fa24b3f3a1aaac8c87e3ae8240
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Thu Jul 28 11:08:07 2022 +0200

        Add LHS resizing

    commit 73d5014e6682a6dc39462c465f68cdfb7a641eca
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Thu Jul 28 08:59:56 2022 +0200

        Refactor implementation

    commit 317cf2fb3f278f4be73735a6aa014801868f6f77
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Wed Jul 27 14:25:15 2022 +0200

        Initial resizing implementation

    commit 07b34f2786866a0ffdc19e56afcc7fac1a3789e6
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 26 07:22:39 2022 +0200

        - fixed #935

    commit 92e7201639ff341004e5d6105db9abfbd8b786a3
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Jul 20 09:59:48 2022 +0200

        Update package.json

        -bumped version to 0.10.121

    commit 6e86e0537d60c25f9e3fcbe50426fb477034ff4e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 19 15:28:04 2022 +0200

        - job table hidden for this release
        - bumped version to 0.10.119

    commit 9ec4e84c799cc38ae59fa7c9ebf7a2e6efec7917
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 19 15:01:44 2022 +0200

        - fixed inputs folder
        - bumped version to 0.10.118

    commit a6283f00d717712cc1d7601f02a68965833dbb82
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jul 19 14:28:27 2022 +0200

        Update package.json

        bumped version to 0.10.117

    commit 6a0987f34eecf1a2f3322acbd9642e3d1b188250
    Merge: 335cbd1f acb6bd58
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 19 14:24:39 2022 +0200

        Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

    commit 335cbd1fd6dcd9a8d85274477bb2625d2ce858c3
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 19 14:23:35 2022 +0200

        - hardcoded inputs directory

    commit acb6bd586c9cf53cc2906923a85c960e5f29593b
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jul 14 09:58:27 2022 +0200

        Update package.json

        bumped version to 0.10.110

    commit afa9f245c5e36a1ae9eeaa67ba26e29f8f58460c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jul 14 07:22:38 2022 +0200

        - bumped version to 0.10.108

    commit 2966391d406767f5cd77fcda471bd0d7ad04a092
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jul 14 06:58:37 2022 +0200

        Squashed commit of the following:

        commit 949573bd930afaa0171a728f05dafa08c2425341
        Merge: deb0d1c3 74ea6613
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 06:56:52 2022 +0200

            Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

        commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit e2a00641039dd34b348ce2084eefd8f33ae04343
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jun 6 06:05:49 2022 +0200

            Squashed commit of the following:

            -bumped version to 0.10.93

            commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:53:32 2022 +0200

            commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:43:17 2022 +0200

            commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:10:44 2022 +0200

            commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:54:57 2022 +0200

            commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:08:28 2022 +0200

            commit f3b3b10a879447705b2709b88d48b62fe50e14cc
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:59:23 2022 +0200

            commit 02aa5955918abace2d5473e89bb9260ff10d7338
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:40:29 2022 +0200

            commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 08:43:26 2022 +0200

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

        commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

    commit 7f1fabe9b693b06cdd84a9c6aae7ac5eaed26e1c
    Merge: 0b3a8739 de944e8b
    Author: Anton Gasperak <anton.gasperak@m2ms.sk>
    Date:   Wed Jul 13 13:27:29 2022 +0200

        Merge branch 'Branch_WithoutJobsWithPerspectives' into allfunctionality

    commit de944e8b28685c0701ebf52b263793655f343216
    Merge: 1fd5fb27 61bfa5fb
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jul 7 12:40:57 2022 +0200

        Merge branch 'master' into Branch_WithoutJobsWithPerspectives

    commit 1fd5fb27f7cbcfa109219af36de429076643799a
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jun 30 14:37:57 2022 +0200

        Update package.json

        bumped version to 0.10.106

    commit 9bb0460406608b8b91dd7bacb9ce164ce7db139a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jun 30 14:32:28 2022 +0200

        - bumped version number to 0.10.105

    commit 40cca0967b30a4b9c9b89d5b786f8ba529ae1cb8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jun 30 14:07:32 2022 +0200

        Squashed commit of the following:

        commit a253c659d54a7a9684e342085085b0847c14bce2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jun 28 08:20:10 2022 +0200

            Update package.json

            bumped version to 0.10.104

        commit cff8e20d18d0fb428f603b7ff31367331ca360c0
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 13 08:52:20 2022 +0200

        commit 41bc53e1525f17b36ba404994dbba2a76c84a539
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jun 10 09:27:41 2022 +0200

            Update package.json

            bumped version to 0.10.97

        commit 80edcbbb6a2ce67422b8ec2a75d17a174ee4bdb7
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jun 9 15:53:10 2022 +0200

        commit 806c1e2d9f562714a8e679b722da03e57487d9a3
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jun 9 13:13:51 2022 +0200

        commit e4b1a5261e8a9aa440e1ef802ce4d3f6d598446b
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jun 9 11:30:25 2022 +0200

        commit 78e49867e54c186323ea872b551dcd78afc85524
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jun 9 10:53:29 2022 +0200

        commit 0ec34adf20df2f5fb88643f788eabef4b4d3dfc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jun 9 10:18:48 2022 +0200

        commit d1c2c3d87ddcd588e8258c0db222a3ae67b5f34d
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jun 9 08:46:11 2022 +0200

        commit 23d0b3e15f6219b22797a4e5634d324cf2aa01cd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jun 8 13:39:35 2022 +0200

            - bumped version to 0.10.96

        commit 3552d0eef34d0e20f191d03f8377daf160084f6f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jun 8 11:49:18 2022 +0200

            Squashed commit of the following:

            commit b367793299c74e2210e763e5f9f5706d3cd7b06a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue May 17 12:44:50 2022 +0200

                - added my personal docker compose file because of problem with my docker desktop

            commit 1a2c1d9b385584f242f04dddd44aaad03dd51a09
            Merge: 3e74edcb bcf60e29
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon May 9 12:24:34 2022 +0200

                Merge branch 'Branch_WithoutJobs' of https://github.com/m2ms/fragalysis-frontend into Branch_WithoutJobs

            commit 3e74edcb8da15feb7679cc1b260383a5cec38c49
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon May 9 12:24:22 2022 +0200

                bumped version to 0.10.83

            commit bcf60e2971be855a18aae497e1346b4781149022
            Merge: a13ad72d a59e4015
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon May 9 10:10:27 2022 +0200

                Merge branch 'master' into Branch_WithoutJobs

            commit a13ad72d05209f80327f09a47a5bc76f9c3e36cc
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon May 9 10:06:50 2022 +0200

                - bumped version to 0.10.82

            commit 0980dfbbb934a0c3d2dceef3a41d820edf685e18
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon May 9 09:24:01 2022 +0200

                - scaled down bad atoms for protein

            commit a59e4015ccf25c59fd826d46c7738f9d345c0054
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 25 09:25:11 2022 +0200

                fixed snapshot problems for protein quality  (#296)

                * Squashed commit of the following:

                commit 280000a57ce92695cbdf2321379a7c39eb308ace
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 7 12:47:24 2022 +0100

                    -fixed #762, #768, #787

                * - switched width and height for the molecule rendering
                - bumped version to 0.10.66

                * Squashed commit of the following:

                commit 94a13152a431bf77b89ddcdcd66fe05cf18defc8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 15 15:42:48 2022 +0100

                    - bumped version to 0.10.67

                commit 2bc08fd9178d32ef451781c558e60e8458301a39
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 15 15:41:13 2022 +0100

                    -implemented select all hits as a single action for undo/redo and restoration from snapshot

                commit 0c66e8ae047d57e00a6d55112dc543d2659dbb47
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 15 11:52:38 2022 +0100

                    - partially fixed saving molecule selection to snapshots

                commit deb50b648baf8ee0f0339e852be62f2d9e7a09fe
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 15 09:28:30 2022 +0100

                    - shortened label 'Selected hits' to 'Selected' due to space constraints

                commit 980e6fd3fbf409cdad1f62abad627f2d56330315
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 15 09:21:46 2022 +0100

                    minor fixes

                commit 52b3f249d61bf3dbeb45b51a7d639831d8e53be3
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 14 10:11:20 2022 +0100

                    - implemented synchronous tagging

                commit cceaa80cb9fc0eee22e054d1794b4c59dd0b3ec8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 8 10:02:26 2022 +0100

                    partial fixes

                * - bumped version to 0.10.68
                Squashed commit of the following:

                commit 148ecb6fd232d9ce5fc887ce5eeb22f5ca0187d4
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 21 12:16:33 2022 +0100

                    - #815, #804, #803, #801

                * - fixed problem where selecting L or other buttons on the hit would select all the tags associated with given hit

                * - bumped version to 0.10.69

                * - fixed issue when tooltip with tags assigned to hit was not displayed when assign tags window for given hit was opened
                - bumped version to 0.10…
boriskovar-m2ms added a commit that referenced this issue Jul 26, 2023
commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jul 4 08:00:12 2023 +0200

    - fixed #1073

commit ae8406cfdb405dce01d075de39754d2acd6cc55a
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jun 7 08:26:20 2023 +0200

    Squashed commit of the following:

    commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
    Merge: d266f99b 949f4734
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 11:17:58 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 10:50:48 2023 +0200

        - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    commit 62784948247ed7f0521b10418b1b8a271e7062f0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 09:43:11 2023 +0200

        - add button to job table to copy snapshot associated with the job run

    commit 949f47340369a671516a7c6317f8f7e35ba86984
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 14:47:39 2023 +0200

        Ms 2022 08 18 yellow (#351)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

        * - schema expansion test

        * Update package.json

        just to trigger build action

        * Update package.json

        to trigger build action

    commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
    Merge: eaadb729 8d437c3f
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 14:35:37 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit eaadb729f90441417c899cf4869e26a1b789bb42
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 12:39:23 2023 +0200

        Update package.json

        to trigger build action

    commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 11:26:05 2023 +0200

        Update package.json

        just to trigger build action

    commit 09007706e2ec26c6006d7d19a756129d093ac306
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 09:36:38 2023 +0200

        - schema expansion test

    commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 17:00:05 2023 +0200

        Ms 2022 08 18 yellow (#350)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

    commit 7790dfbc261a302018423ce1a506eb33eb48d683
    Merge: bf42cc20 45438127
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 16:57:36 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit bf42cc20b514c4b3708b606557cb576324f02a20
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 16:57:18 2023 +0200

        - fixed bad merge from staging

    commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:47:17 2023 +0200

        Ms 2022 08 18 yellow (#349)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

    commit 45438127c520d201677dd1b5c1fd876cdfb035e4
    Merge: 73b5d4c7 dcbf19fd
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:46:11 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
    Merge: b74587f0 1447b079
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:28:34 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:27:49 2023 +0200

        - hopefully fixed problem with reloading older projects

    commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:42:14 2023 +0200

        Ms 2022 08 18 yellow (#348)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
    Merge: b774ac60 d7b5e5c2
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:41:03 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:05:53 2023 +0200

        frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 14:20:00 2023 +0200

        - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 10:43:08 2023 +0200

        Ms 2022 08 18 yellow (#347)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

    commit 17e89cefe8264584ebe0fadc637a1fac542704ac
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 10:23:27 2023 +0200

        - can't go to squonk job execution page if the url is not available

    commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 09:11:52 2023 +0200

        Minor fixes before the release (#346)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

    commit c8b5f20dd521c7007f08531736541ca84b041a85
    Merge: 8d500638 2cd48e04
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 14:35:17 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8d50063887bc2f6335550f15fe69cc93b17be30e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 14:34:49 2023 +0200

        - new BE image

    commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
    Merge: 0fddd791 b20adee8
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 13:00:20 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 12:09:36 2023 +0200

        Update package.json

        triggering the build action

    commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 10:44:24 2023 +0200

        - before the release fixes

    commit b10160928bff787161a140e4cffd8aa783a4c482
    Merge: f6699d10 9f5f2b7c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 31 09:38:39 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 31 09:37:22 2023 +0200

        - minor typo fix

    commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 14:00:10 2023 +0100

        Update package.json

        just to trigger build action

    commit 5a37013c71469f9433c36d956174b1efc1e698ab
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 12:43:27 2023 +0100

        Update package.json

        to trigger build action

    commit b54cdaa4ea816719128c07939a14a99152a8e990
    Merge: 5dfc38be d6d5216d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 11:36:29 2023 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 11:35:57 2023 +0100

        - updated build-dev.yaml

    commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 08:52:55 2023 +0100

        Update package.json

        trigger build action

    commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 08:46:51 2023 +0100

        Update package.json

        to trigger build action

    commit b20adee8140c7f46573eb5e7525e97427d23d4d4
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 17:29:15 2023 +0100

        Ms 2022 08 18 yellow (#345)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
    Merge: d777f117 4cb92f6c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 10:50:04 2023 +0100

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 10:17:34 2023 +0100

        - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    commit ae0cbdc8540aa440c776be3b84508c710a215d36
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 09:01:48 2023 +0100

        - fixed bugs found in staging

    commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 13:05:06 2023 +0100

        Ms 2022 08 18 yellow (#344)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

    commit bc13d845aa206aa7d8d151a8bb53f53335761084
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 10:38:18 2023 +0100

        Update package.json

        triggering build action

    commit 49d1ad57042d353f76c7368944601a8d64e44596
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 10:32:30 2023 +0100

        Update package.json

        to trigger build action

    commit fd0df1c021010f4f5e028090493464721b8b2600
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 09:11:44 2023 +0100

        - added message when access to squonk is denied

    commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 14:35:57 2023 +0100

        - fixed problem with id

    commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 14:18:47 2023 +0100

        - authorize user for viewing squonk job

    commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:58:15 2023 +0100

        - added more logs

    commit d97a512d75aa621be77ee69b547b21e1653386e1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:19:18 2023 +0100

        fixed problem with entries function

    commit 7e28e41d96e57998b979752d3651304bf36713c9
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:13:08 2023 +0100

        - added debug logs

    commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 11:29:23 2023 +0100

        - implemented #890

    commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:50:08 2023 +0100

        - fixes because can't debug this locally

    commit 59779b6b80ec7e21af68b219a543a017aa837b14
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:29:05 2023 +0100

        - trying to fix a bug with inputs

    commit 76ccc089efc43589bb381ea6589567dce538aa8b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:12:34 2023 +0100

        - reworked show inputs in jobs table

    commit e862c726c81b0328cc9b7538d9820481b7d85cd8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:46:29 2023 +0100

        - added debug info

    commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:33:00 2023 +0100

        - added debug info

    commit c4b11af95a56786493e13735ac92b1b1f766af79
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:13:41 2023 +0100

        - added debug info

    commit 6adc86d4f95a362b38747e001f55bde2a104baff
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:53:49 2023 +0100

        - added debug info

    commit e42ed05162106109c927e80620d67b5af31b7ef1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:34:10 2023 +0100

        - added debug info

    commit 39034c54b97f4da301365c69d985640a66c75469
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:09:04 2023 +0100

        - added debug info

    commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 14:48:45 2023 +0100

        - added debug info

    commit 13a00cf2ba8f4ae13de4865096f9def349acd158
    Merge: 0a36ae5c d0317f60
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Tue Feb 21 20:43:31 2023 +0000

        Merge pull request #341 from m2ms/ms-2022-08-18-yellow

        Ms 2022 08 18 yellow release

    commit d0317f607def3b6e1a5651554b338161fce4f040
    Merge: 53164d21 8c4ca1d0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:58:48 2023 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 53164d21b23e7a918a772ced6292817b4306031e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:57:25 2023 +0100

        Squashed commit of the following:

        commit 19b3910d84f9707b8047524cfe44dfa1f8696644
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:33:18 2023 +0100

            - new dev BE

        commit af427c71d9499c975e12b314202bdb0f0ec13826
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Feb 17 08:44:14 2023 +0100

            Update package.json

            just to trigger build action

        commit 4cb19eb371b0147dfc51b704a36dba842543d311
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 16 09:09:27 2023 +0100

            Update package.json

            just to trigger build action

        commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Feb 15 14:01:32 2023 +0100

            Update package.json

            just to trigger build action

        commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Feb 14 08:50:44 2023 +0100

            - fixed direct links and direct download links

        commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 14:02:18 2023 +0100

            - fixed job name

        commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 13:28:20 2023 +0100

            - added fragmenstein-combine-multi-scoring.json

        commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 13:25:35 2023 +0100

            - checkpoint

        commit b43373e1c228d9e46f4c831fc46269d614013e92
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 10:43:27 2023 +0100

            - fixed problem where UI would crash if there was a problem during job file transfer of job launch

        commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 09:54:36 2023 +0100

            - fixed bad project capture from url

        commit 7d588895cebd0e363aa5d62b36770499364aef06
        Merge: 11180a5c 4fc7f7bd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 09:27:51 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 11180a5c0142ea18624ae14ddaad16793fdcb435
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 09:26:31 2023 +0100

            - prevent crash when there is a project associated with target which user is not authorized to see

        commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 07:25:12 2023 +0100

            Update package.json

            just to trigger build action

        commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 15:43:38 2023 +0100

            Update package.json

            just to trigger the build action

        commit d0d429c473307ce2bfa825ad9e556084082accd8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 15:20:25 2023 +0100

            Update package.json

            just to trigger the build action

        commit fcf377b863abf9110e1c0ce752b29bce073349cf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 14:51:17 2023 +0100

            - fixed problem when job config windows closes on error

        commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
        Merge: 5a3d56bf 0f8e702a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 13:19:16 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 13:18:30 2023 +0100

            - now sending id of the project and not target_access_string

        commit 0f8e702a023e2f786c5ba46eab2205f158a75480
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:59:19 2023 +0100

            Update package.json

            just to trigger build action

        commit 585076db67dc32b58083c184e1ca11a6dddc434b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:39:19 2023 +0100

            - fixed problem when project pane was not showing up right after a project was created

        commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:08:23 2023 +0100

            - fix for missing project pane

        commit ba0a1fe55bd53f719d31d795d71877d81366cac9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 09:05:50 2023 +0100

            - version for job execution - broken UI

        commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
        Merge: 51e97af1 a42cad71
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 1 13:58:27 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 1 13:57:49 2023 +0100

            - partial implementation of #1020

        commit a42cad7193b8c8f02c04378bba01f6f44114ec88
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 26 08:34:01 2023 +0100

            Update package.json

            just to trigger build action

        commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Jan 25 09:39:06 2023 +0100

            Update package.json

            just to trigger build action

        commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 15:10:11 2023 +0100

            Update package.json

            just to trigger the build action

        commit e8e5657cc5f7beecf5813040210605b6cf410cef
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 14:04:56 2023 +0100

            Update package.json

            just to trigger build

        commit 24dc912bfdae3bec9c52867f2d638754635cecbb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:49:58 2023 +0100

            - sensitive data moved to .env file

        commit a98c51751368104300a872f116cc22acc09cec44
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:49:06 2023 +0100

            - added .env to gitignore

        commit 13b4bed082612315afc948192fe758fb42edf63d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:47:56 2023 +0100

            - mending an error

        commit 5b74eb4326389e11b923b560f6603586bfc3b87c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 18 09:52:19 2023 +0100

            - checkpoint

        commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 17 10:10:27 2023 +0100

            - initial implementation #1020

    commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Jan 16 11:35:37 2023 +0100

        Update package.json

        just to trigger build action

    commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Jan 13 10:47:51 2023 +0100

        Update package.json

        just to trigger build action

    commit 0d6abaa08dc7a174d915d33e21a1667accd39423
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jan 12 10:18:23 2023 +0100

        Update package.json

        just to trigger build action

    commit d5905966cb9bf2994f93668911873108832d7578
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 11 11:02:25 2023 +0100

        - forgot to reset debug constants

    commit df7057032baa70df6451b7faf0a232fa75a1e55b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 11 08:05:23 2023 +0100

        - minor fix for upload_status

    commit 698d123634ded171f161c3bb9f27e4e1600730be
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 15:42:30 2023 +0100

        - minor fix for upload_status

    commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 15:26:03 2023 +0100

        - upload_failed now taken into the account

    commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 13:35:25 2023 +0100

        Update package.json

        - just to trigger build action

    commit e6fbd6d213418dfd9708e206da341e8e37e776c3
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 11:54:17 2023 +0100

        Update package.json

        just to trigger build action

    commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Dec 23 13:01:20 2022 +0100

        - updated README.md

    commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
    Merge: 6a7a0dda 782b84b5
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Tue Dec 20 18:11:19 2022 +0000

        Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

        Animate to new orientation matrix first

    commit 5504bd464e1d699833f258b994e344cb339cb234
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Dec 20 08:06:06 2022 +0100

        Squashed commit of the following:

        commit cec398dcf0a14f7e433b2baec849e29001358839
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:00:30 2022 +0100

            -

        commit 885f08e18f7983723a0944bd90cec646c869ee89
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:18:38 2022 +0100

            - bug fix in progress for #970

        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:30:41 2022 +0100

            - now user can insert list of strings as an input for a job

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 6fa2432f7226be0d54f7ce608719c0d59863d367
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:09:59 2022 +0100

        Squashed commit of the following:

        commit 553235691beedd110072226ff20b6b49a6aad1ee
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:06:41 2022 +0100

            - orient first then remove/add stuff

    commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
    Merge: eaa4ccbd f07779ce
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:08:49 2022 +0100

        Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

    commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:08:30 2022 +0100

        Squashed commit of the following:

        commit 553235691beedd110072226ff20b6b49a6aad1ee
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:06:41 2022 +0100

            - orient first then remove/add stuff

    commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
    Merge: 356e625e f07779ce
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Fri Dec 16 12:44:21 2022 +0000

        Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

        Ms 2022 08 18 yellow wo 970

    commit f07779ce30667465ea1aba424085e8978827641a
    Merge: 57336b82 dcc2c882
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Dec 16 13:24:09 2022 +0100

        Merge branch 'master' into ms-2022-08-18-yellow-wo-970

    commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 15 16:32:57 2022 +0100

        Squashed commit of the following:

        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:30:41 2022 +0100

            - now user can insert list of strings as an input for a job

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
    Merge: 8ac386cd 57336b82
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:28:30 2022 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:27:11 2022 +0100

        Squashed commit of the following:

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 57336b825cb95aecb3dfff78ab571bb85e906073
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Dec 8 11:41:44 2022 +0100

        Update package.json

        just to trigger action

    commit c6c3ed0b16414d528684d63befca6a01634683d0
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 11:57:33 2022 +0100

        Update package.json

        just to trigger action

    commit 614b01c80882557160777ba96abc92c2d328112e
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 09:38:38 2022 +0100

        Update package.json

        just to trigger action

    commit c0d2b3858d074b33303eef48e42f11e7eefac474
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 08:39:23 2022 +0100

        Update package.json

        just to trigger action

    commit bbf6f91e8498586d666204c3493405c4ca4e7268
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 08:31:30 2022 +0100

        Update package.json

        just to trigger rebuild

    commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:28:17 2022 +0100

        Squashed commit of the following:

        commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:14:43 2022 +0100

            - #1001

    commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 1 09:10:59 2022 +0100

        Squashed commit of the following:

        commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:08:03 2022 +0100

            - implemented #1012

    commit f8eb4067e0ece9d170e3405bebe21a689927442c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 29 10:24:56 2022 +0100

        Squashed commit of the following:

        commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:22:31 2022 +0100

            - fixed #1013

        commit db173bcdd76574055d5132ec3cd34012a727656d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 14:39:16 2022 +0100

            Squashed commit of the following:

            commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
            Merge: 8712fddb 87870aa1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:40:54 2022 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:39:15 2022 +0100

                Squashed commit of the following:

                commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:30:45 2022 +0100

                    - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 08:16:31 2022 +0100

                    - #876 seems to be done

            commit 87870aa192d10344ae7eb384618ef137986862d0
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 09:36:12 2022 +0100

                Update package.json

                just to trigger build action

    commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
    Merge: 8712fddb 87870aa1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:40:54 2022 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:39:15 2022 +0100

        Squashed commit of the following:

        commit cb3969273bde4d917b38c56485a05b1be23cf9cd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:30:45 2022 +0100

            - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 08:16:31 2022 +0100

            - #876 seems to be done

    commit 87870aa192d10344ae7eb384618ef137986862d0
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 09:36:12 2022 +0100

        Update package.json

        just to trigger build action

    commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 09:08:21 2022 +0100

        Squashed commit of the following:

        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 08:16:31 2022 +0100

            - #876 seems to be done

    commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
    Merge: 0530324b 7b7cbe99
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Mon Nov 14 09:59:45 2022 +0000

        Merge pull request #329 from m2ms/#977-ngl

        Fast switching between snapshots

    commit 7b7cbe99952000f6c550727e082cb920cafa144c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 8 10:04:33 2022 +0100

        - #977 - fixed issue with ngl settings were not saved and restored

    commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 7 10:14:18 2022 +0100

        Squashed commit of the following:

        commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Nov 3 08:01:05 2022 +0100

            - fixed ngl view was not tracked

    commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
    Merge: 931a5aea 5746062a
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 15:51:39 2022 +0100

        Merge pull request #325 from xchem/production

        Action doc tweaks

    commit 5746062aacabb5201feefed8ea09e3e34066a175
    Merge: b0e75d17 dc2ff23d
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 15:50:50 2022 +0100

        Merge pull request #324 from alanbchristie/production

        Action doc tweaks

    commit dc2ff23d773157c74f864931e06ccb0fd21cf335
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 15:48:48 2022 +0100

        Add doc for production workflow

    commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 15:35:27 2022 +0100

        Tweak action docs

    commit 931a5aea583997a80bab66d8099f743529f8d98f
    Merge: cb4246e7 b0e75d17
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 12:51:21 2022 +0100

        Merge pull request #323 from xchem/production

        Production now triggers stack

    commit b0e75d174217c507b2db2f4d6329e4ed2315e887
    Merge: cb4246e7 ac3297e4
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 12:50:08 2022 +0100

        Merge pull request #322 from alanbchristie/production

        Production now triggers stack

    commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 12:49:11 2022 +0100

        Production now triggers stack

        Fix for BE tag

    commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
    Merge: dcc2c882 dec6f785
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 11:15:06 2022 +0100

        Merge pull request #321 from alanbchristie/production

        CI changes for new branch policy

    commit dec6f785663f6e3050262c5a4b4704109d2e446a
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 10:58:08 2022 +0100

        Removed personal repo references

    commit 2147aa18af1211a32f55e228c1023491008204ac
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Oct 26 10:00:07 2022 +0200

        - updated squonk project id for dev stacks

    commit b2bc6e79197baa4c7336822fca2bfbf54eded377
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Oct 24 16:47:24 2022 +0200

        - first real version of the final implementation of ticket #977
        - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

    commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Oct 20 07:32:33 2022 +0200

        - nearly complete issue #977

    commit dcc2c8824378b69e118564a664b332456d5632e4
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Sep 29 12:48:42 2022 +0200

        edited in correct squonk project id

    commit 725f6d5267d568afd34f29f22b0869458d759832
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Sep 29 12:47:31 2022 +0200

        removed Upload button from Job popup (#320)

        * - initial commit

        * - checkpoint

        * - new backend

        * Update package.json

        bumped version to 0.10.109

        * Update package.json

        bumped version to 0.10.111

        * Update package.json

        version bumped to 0.10.112

        * Update package.json

        bumped version to 0.10.113

        * Update package.json

        bumped version to 0.10.114

        * Update package.json

        bumped version to 0.10.115

        * - added new back-end

        * Squashed commit of the following:

        commit 949573bd930afaa0171a728f05dafa08c2425341
        Merge: deb0d1c3 74ea6613
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 06:56:52 2022 +0200

            Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

        commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit e2a00641039dd34b348ce2084eefd8f33ae04343
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jun 6 06:05:49 2022 +0200

            Squashed commit of the following:

            -bumped version to 0.10.93

            commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:53:32 2022 +0200

                #883 - Remove unused selection action

            commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:43:17 2022 +0200

                #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

            commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:10:44 2022 +0200

                #883 - Remove associatedDownloadTagName from selectionReducers

            commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:54:57 2022 +0200

                #883 - Remove displayedMoleculesInHitNav from selectionReducers

            commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:08:28 2022 +0200

                #883 - Remove displayAllInNGLList from selectionReducers

            commit f3b3b10a879447705b2709b88d48b62fe50e14cc
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:59:23 2022 +0200

                #883 - Remove listAllList from selectionReducers

            commit 02aa5955918abace2d5473e89bb9260ff10d7338
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:40:29 2022 +0200

                #883 - Move categoryList from selectionReducers to apiReducers

            commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 08:43:26 2022 +0200

                #883 - Move tagList from selectionReducers to apiReducers

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

            #885 - Add the possibility to recompile variables before job launching

        commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

            #885 - Adjust and compile schema

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

            #885 - Reuse the merged schema in JobVariablesDialog

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

            #885 - Add new job definition

        * updated fragmentstein job spec

        Squashed commit of the following:

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

            #885 - Add the possibility to recompile variables before job launching

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

            #885 - Adjust and compile schema

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

            #885 - Reuse the merged schema in JobVariablesDialog

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

            #885 - Add new job definition

        * - changed default value for output file

        * Update package.json

        bumped version to 0.10.116

        * - new backend test

        * Update package.json

        bumped version to 0.10.120

        * Update package.json

        bumped version to 0.10.122

        * - new version of the backend added

        * Squashed commit of the following:

        commit c6c605ed21996d470a36b0de0a51a4e145792884
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 4 09:25:18 2022 +0200

            - fixed #949

        commit 2118900c0f7b92aa3ff7b6a1aefd943ab506c287
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 3 15:42:41 2022 +0200

            - fixed problem where there are no selected inputs for a job

        commit db6f6436af34cfead10d7e788bf4d9c3a9029294
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 3 08:47:55 2022 +0200

            - fixed #947
            - bumped version to 0.10.124

        commit ff46c9cfd817aea7440a94f6ca115604f43dfc71
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Jul 29 09:19:30 2022 +0200

            - pushed remote debugging on by accident

        commit ae2c855315830e02407fac25febcc00d28366438
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:53:44 2022 +0200

            - bumped version to 0.10.122

        commit 9f9c0e3ed7ea51b6e1c2827ebe975b5f96c4f8f8
        Merge: e43d812c 93455bdf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:53:12 2022 +0200

            Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

        commit e43d812c8db635949389722976af03f63ffd0fa0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:50:59 2022 +0200

            - fixed #928
            - partial fix (one of the cases) #939

        commit 93455bdf313191b865bd5ccb9eda4c160f9dd1cd
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 13:00:24 2022 +0200

            Adjust layout behaviour

        commit 91171830ff366d1a3fd7406cfc5472257c9a565b
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 11:33:29 2022 +0200

            Adjust overflows

        commit fcd15f864eddc0fa24b3f3a1aaac8c87e3ae8240
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 11:08:07 2022 +0200

            Add LHS resizing

        commit 73d5014e6682a6dc39462c465f68cdfb7a641eca
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 08:59:56 2022 +0200

            Refactor implementation

        commit 317cf2fb3f278f4be73735a6aa014801868f6f77
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jul 27 14:25:15 2022 +0200

            Initial resizing implementation

        commit 07b34f2786866a0ffdc19e56afcc7fac1a3789e6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 26 07:22:39 2022 +0200

            - fixed #935

        commit 92e7201639ff341004e5d6105db9abfbd8b786a3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Jul 20 09:59:48 2022 +0200

            Update package.json

            -bumped version to 0.10.121

        commit 6e86e0537d60c25f9e3fcbe50426fb477034ff4e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 15:28:04 2022 +0200

            - job table hidden for this release
            - bumped version to 0.10.119

        commit 9ec4e84c799cc38ae59fa7c9ebf7a2e6efec7917
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 15:01:44 2022 +0200

            - fixed inputs folder
            - bumped version to 0.10.118

        commit a6283f00d717712cc1d7601f02a68965833dbb82
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:28:27 2022 +0200

            Update package.json

            bumped version to 0.10.117

        commit 6a0987f34eecf1a2f3322acbd9642e3d1b188250
        Merge: 335cbd1f acb6bd58
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:24:39 2022 +0200

            Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

        commit 335cbd1fd6dcd9a8d85274477bb2625d2ce858c3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:23:35 2022 +0200

            - hardcoded inputs directory

        commit acb6bd586c9cf53cc2906923a85c960e5f29593b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 09:58:27 2022 +0200

            Update package.json

            bumped version to 0.10.110

        commit afa9f245c5e36a1ae9eeaa67ba26e29f8f58460c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 07:22:38 2022 +0200

            - bumped version to 0.10.108

        commit 2966391d406767f5cd77fcda471bd0d7ad04a092
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 06:58:37 2022 +0200

            Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 08:43:26 2022 +0200

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

            commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

            commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 08:36:34 2022 +0200

        commit 7f1fabe9b693b06cdd84a9c6aae7ac5eaed26e1c
        Merge: 0b3a8739 de944e8b
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jul 13 13:27:29 2022 +0200

            Merge branch 'Branch_WithoutJobsWithPerspectives' into allfunctionality

        commit de944e8b28685c0701ebf52b263793655f343216
        Merge: 1fd5fb27 61bfa5fb
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jul 7 12:40:57 2022 +0200

            Merge branch 'master' into Branch_WithoutJobsWithPerspectives

        commit 1fd5fb27f7cbcfa109219af36de429076643799a
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jun 30 14:37:57 2022 +0200

            Update package.json

            bumped version to 0.10.106

        commit 9bb0460406608b8b91dd7bacb9ce164ce7db139a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 30 14:32:28 2022 +0200

            - bumped version number to 0.10.105

        commit 40cca0967b30a4b9c9b89d5b786f8ba529ae1cb8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 30 14:07:32 2022 +0200

            Squashed commit of the following:

            commit a253c659d54a7a9684e342085085b0847c14bce2
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jun 28 08:20:10 2022 +0200

                Update package.json

                bumped version to 0.10.104

            commit cff8e20d18d0fb428f603b7ff31367331ca360c0
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 13 08:52:20 2022 +0200

            commit 41bc53e1525f17b36ba404994dbba2a76c84a539
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Jun 10 09:27:41 2022 +0200

                Update package.json

                bumped version to 0.10.97

            commit 80edcbbb6a2ce67422b8ec2a75d17a174ee4bdb7
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Thu Jun 9 15:53:10 2022 +0200

            commit 80…
boriskovar-m2ms added a commit that referenced this issue Aug 2, 2023
* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - reworked show inputs in jobs table

* - trying to fix a bug with inputs

* - fixes because can't debug this locally

* - implemented #890

* - added debug logs

* fixed problem with entries function

* - added more logs

* - authorize user for viewing squonk job

* - fixed problem with id

* - added message when access to squonk is denied

* Update package.json

to trigger build action

* Update package.json

triggering build action

* - fixed bugs found in staging

* - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

* Update package.json

to trigger build action

* Update package.json

trigger build action

* - updated build-dev.yaml

* Update package.json

to trigger build action

* Update package.json

just to trigger build action

* - minor typo fix

* - before the release fixes

* Update package.json

triggering the build action

* - new BE image

* - can't go to squonk job execution page if the url is not available

* - Add status to the job table
- Revert the disabled buttons if I can't run the job for the target
- Show the exception from squonk access when click OPEN IN SQUONK and show error messag

* frontend fixes before green release:
- If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

* - hopefully fixed problem with reloading older projects

* - fixed bad merge from staging

* - schema expansion test

* Update package.json

just to trigger build action

* Update package.json

to trigger build action

* - add button to job table to copy snapshot associated with the job run

* - fixed problem for 'add button to job table to copy snapshot associated with the job run'

* added searchString to action and TimeLine

* #576 restored searchString from snapshot for RHS

* #576 edited time for search response

* #576 restore search string for hit navigator

* #576 Restore search for project history

* #978 added new button and conditions for showing

* #978 change modal background and position

* #978 setted modal window position under buttons

* #978 fixed onClick for close modal

* #576 edited tag detail added toggle union/intersec

* #576 added buttons to Tag Detail

* #978 added new column and sort by columns

* #978 edited sort and filter project list table

* #978 edited filter and search data

* #576 edit width count

* Update package.json

- just to trigger build action

* - fixed instance when project is missing from session-project (which AFAIK should never happen though)

* Update package.json

- just to trigger build action

* #978 filter for project list and other fix

* #576 edited LHS height and Tag detail colors

* #576 added "Select displayed button"

* #978 edited save change for NGL

* - semicolons?

* -merge

* Squashed commit of the following:

commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jul 4 08:00:12 2023 +0200

    - fixed #1073

commit ae8406cfdb405dce01d075de39754d2acd6cc55a
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jun 7 08:26:20 2023 +0200

    Squashed commit of the following:

    commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
    Merge: d266f99b 949f4734
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 11:17:58 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 10:50:48 2023 +0200

        - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    commit 62784948247ed7f0521b10418b1b8a271e7062f0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 09:43:11 2023 +0200

        - add button to job table to copy snapshot associated with the job run

    commit 949f47340369a671516a7c6317f8f7e35ba86984
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 14:47:39 2023 +0200

        Ms 2022 08 18 yellow (#351)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

        * - schema expansion test

        * Update package.json

        just to trigger build action

        * Update package.json

        to trigger build action

    commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
    Merge: eaadb729 8d437c3f
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 14:35:37 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit eaadb729f90441417c899cf4869e26a1b789bb42
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 12:39:23 2023 +0200

        Update package.json

        to trigger build action

    commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 11:26:05 2023 +0200

        Update package.json

        just to trigger build action

    commit 09007706e2ec26c6006d7d19a756129d093ac306
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 09:36:38 2023 +0200

        - schema expansion test

    commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 17:00:05 2023 +0200

        Ms 2022 08 18 yellow (#350)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

    commit 7790dfbc261a302018423ce1a506eb33eb48d683
    Merge: bf42cc20 45438127
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 16:57:36 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit bf42cc20b514c4b3708b606557cb576324f02a20
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 16:57:18 2023 +0200

        - fixed bad merge from staging

    commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:47:17 2023 +0200

        Ms 2022 08 18 yellow (#349)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

    commit 45438127c520d201677dd1b5c1fd876cdfb035e4
    Merge: 73b5d4c7 dcbf19fd
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:46:11 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
    Merge: b74587f0 1447b079
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:28:34 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:27:49 2023 +0200

        - hopefully fixed problem with reloading older projects

    commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:42:14 2023 +0200

        Ms 2022 08 18 yellow (#348)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
    Merge: b774ac60 d7b5e5c2
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:41:03 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:05:53 2023 +0200

        frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 14:20:00 2023 +0200

        - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 10:43:08 2023 +0200

        Ms 2022 08 18 yellow (#347)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

    commit 17e89cefe8264584ebe0fadc637a1fac542704ac
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 10:23:27 2023 +0200

        - can't go to squonk job execution page if the url is not available

    commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 09:11:52 2023 +0200

        Minor fixes before the release (#346)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

    commit c8b5f20dd521c7007f08531736541ca84b041a85
    Merge: 8d500638 2cd48e04
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 14:35:17 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8d50063887bc2f6335550f15fe69cc93b17be30e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 14:34:49 2023 +0200

        - new BE image

    commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
    Merge: 0fddd791 b20adee8
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 13:00:20 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 12:09:36 2023 +0200

        Update package.json

        triggering the build action

    commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 10:44:24 2023 +0200

        - before the release fixes

    commit b10160928bff787161a140e4cffd8aa783a4c482
    Merge: f6699d10 9f5f2b7c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 31 09:38:39 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 31 09:37:22 2023 +0200

        - minor typo fix

    commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 14:00:10 2023 +0100

        Update package.json

        just to trigger build action

    commit 5a37013c71469f9433c36d956174b1efc1e698ab
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 12:43:27 2023 +0100

        Update package.json

        to trigger build action

    commit b54cdaa4ea816719128c07939a14a99152a8e990
    Merge: 5dfc38be d6d5216d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 11:36:29 2023 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 11:35:57 2023 +0100

        - updated build-dev.yaml

    commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 08:52:55 2023 +0100

        Update package.json

        trigger build action

    commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 08:46:51 2023 +0100

        Update package.json

        to trigger build action

    commit b20adee8140c7f46573eb5e7525e97427d23d4d4
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 17:29:15 2023 +0100

        Ms 2022 08 18 yellow (#345)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
    Merge: d777f117 4cb92f6c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 10:50:04 2023 +0100

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 10:17:34 2023 +0100

        - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    commit ae0cbdc8540aa440c776be3b84508c710a215d36
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 09:01:48 2023 +0100

        - fixed bugs found in staging

    commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 13:05:06 2023 +0100

        Ms 2022 08 18 yellow (#344)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

    commit bc13d845aa206aa7d8d151a8bb53f53335761084
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 10:38:18 2023 +0100

        Update package.json

        triggering build action

    commit 49d1ad57042d353f76c7368944601a8d64e44596
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 10:32:30 2023 +0100

        Update package.json

        to trigger build action

    commit fd0df1c021010f4f5e028090493464721b8b2600
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 09:11:44 2023 +0100

        - added message when access to squonk is denied

    commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 14:35:57 2023 +0100

        - fixed problem with id

    commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 14:18:47 2023 +0100

        - authorize user for viewing squonk job

    commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:58:15 2023 +0100

        - added more logs

    commit d97a512d75aa621be77ee69b547b21e1653386e1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:19:18 2023 +0100

        fixed problem with entries function

    commit 7e28e41d96e57998b979752d3651304bf36713c9
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:13:08 2023 +0100

        - added debug logs

    commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 11:29:23 2023 +0100

        - implemented #890

    commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:50:08 2023 +0100

        - fixes because can't debug this locally

    commit 59779b6b80ec7e21af68b219a543a017aa837b14
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:29:05 2023 +0100

        - trying to fix a bug with inputs

    commit 76ccc089efc43589bb381ea6589567dce538aa8b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:12:34 2023 +0100

        - reworked show inputs in jobs table

    commit e862c726c81b0328cc9b7538d9820481b7d85cd8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:46:29 2023 +0100

        - added debug info

    commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:33:00 2023 +0100

        - added debug info

    commit c4b11af95a56786493e13735ac92b1b1f766af79
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:13:41 2023 +0100

        - added debug info

    commit 6adc86d4f95a362b38747e001f55bde2a104baff
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:53:49 2023 +0100

        - added debug info

    commit e42ed05162106109c927e80620d67b5af31b7ef1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:34:10 2023 +0100

        - added debug info

    commit 39034c54b97f4da301365c69d985640a66c75469
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:09:04 2023 +0100

        - added debug info

    commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 14:48:45 2023 +0100

        - added debug info

    commit 13a00cf2ba8f4ae13de4865096f9def349acd158
    Merge: 0a36ae5c d0317f60
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Tue Feb 21 20:43:31 2023 +0000

        Merge pull request #341 from m2ms/ms-2022-08-18-yellow

        Ms 2022 08 18 yellow release

    commit d0317f607def3b6e1a5651554b338161fce4f040
    Merge: 53164d21 8c4ca1d0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:58:48 2023 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 53164d21b23e7a918a772ced6292817b4306031e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:57:25 2023 +0100

        Squashed commit of the following:

        commit 19b3910d84f9707b8047524cfe44dfa1f8696644
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:33:18 2023 +0100

            - new dev BE

        commit af427c71d9499c975e12b314202bdb0f0ec13826
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Feb 17 08:44:14 2023 +0100

            Update package.json

            just to trigger build action

        commit 4cb19eb371b0147dfc51b704a36dba842543d311
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 16 09:09:27 2023 +0100

            Update package.json

            just to trigger build action

        commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Feb 15 14:01:32 2023 +0100

            Update package.json

            just to trigger build action

        commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Feb 14 08:50:44 2023 +0100

            - fixed direct links and direct download links

        commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 14:02:18 2023 +0100

            - fixed job name

        commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 13:28:20 2023 +0100

            - added fragmenstein-combine-multi-scoring.json

        commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 13:25:35 2023 +0100

            - checkpoint

        commit b43373e1c228d9e46f4c831fc46269d614013e92
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 10:43:27 2023 +0100

            - fixed problem where UI would crash if there was a problem during job file transfer of job launch

        commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 09:54:36 2023 +0100

            - fixed bad project capture from url

        commit 7d588895cebd0e363aa5d62b36770499364aef06
        Merge: 11180a5c 4fc7f7bd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 09:27:51 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 11180a5c0142ea18624ae14ddaad16793fdcb435
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 09:26:31 2023 +0100

            - prevent crash when there is a project associated with target which user is not authorized to see

        commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 07:25:12 2023 +0100

            Update package.json

            just to trigger build action

        commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 15:43:38 2023 +0100

            Update package.json

            just to trigger the build action

        commit d0d429c473307ce2bfa825ad9e556084082accd8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 15:20:25 2023 +0100

            Update package.json

            just to trigger the build action

        commit fcf377b863abf9110e1c0ce752b29bce073349cf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 14:51:17 2023 +0100

            - fixed problem when job config windows closes on error

        commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
        Merge: 5a3d56bf 0f8e702a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 13:19:16 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 13:18:30 2023 +0100

            - now sending id of the project and not target_access_string

        commit 0f8e702a023e2f786c5ba46eab2205f158a75480
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:59:19 2023 +0100

            Update package.json

            just to trigger build action

        commit 585076db67dc32b58083c184e1ca11a6dddc434b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:39:19 2023 +0100

            - fixed problem when project pane was not showing up right after a project was created

        commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:08:23 2023 +0100

            - fix for missing project pane

        commit ba0a1fe55bd53f719d31d795d71877d81366cac9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 09:05:50 2023 +0100

            - version for job execution - broken UI

        commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
        Merge: 51e97af1 a42cad71
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 1 13:58:27 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 1 13:57:49 2023 +0100

            - partial implementation of #1020

        commit a42cad7193b8c8f02c04378bba01f6f44114ec88
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 26 08:34:01 2023 +0100

            Update package.json

            just to trigger build action

        commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Jan 25 09:39:06 2023 +0100

            Update package.json

            just to trigger build action

        commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 15:10:11 2023 +0100

            Update package.json

            just to trigger the build action

        commit e8e5657cc5f7beecf5813040210605b6cf410cef
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 14:04:56 2023 +0100

            Update package.json

            just to trigger build

        commit 24dc912bfdae3bec9c52867f2d638754635cecbb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:49:58 2023 +0100

            - sensitive data moved to .env file

        commit a98c51751368104300a872f116cc22acc09cec44
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:49:06 2023 +0100

            - added .env to gitignore

        commit 13b4bed082612315afc948192fe758fb42edf63d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:47:56 2023 +0100

            - mending an error

        commit 5b74eb4326389e11b923b560f6603586bfc3b87c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 18 09:52:19 2023 +0100

            - checkpoint

        commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 17 10:10:27 2023 +0100

            - initial implementation #1020

    commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Jan 16 11:35:37 2023 +0100

        Update package.json

        just to trigger build action

    commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Jan 13 10:47:51 2023 +0100

        Update package.json

        just to trigger build action

    commit 0d6abaa08dc7a174d915d33e21a1667accd39423
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jan 12 10:18:23 2023 +0100

        Update package.json

        just to trigger build action

    commit d5905966cb9bf2994f93668911873108832d7578
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 11 11:02:25 2023 +0100

        - forgot to reset debug constants

    commit df7057032baa70df6451b7faf0a232fa75a1e55b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 11 08:05:23 2023 +0100

        - minor fix for upload_status

    commit 698d123634ded171f161c3bb9f27e4e1600730be
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 15:42:30 2023 +0100

        - minor fix for upload_status

    commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 15:26:03 2023 +0100

        - upload_failed now taken into the account

    commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 13:35:25 2023 +0100

        Update package.json

        - just to trigger build action

    commit e6fbd6d213418dfd9708e206da341e8e37e776c3
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 11:54:17 2023 +0100

        Update package.json

        just to trigger build action

    commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Dec 23 13:01:20 2022 +0100

        - updated README.md

    commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
    Merge: 6a7a0dda 782b84b5
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Tue Dec 20 18:11:19 2022 +0000

        Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

        Animate to new orientation matrix first

    commit 5504bd464e1d699833f258b994e344cb339cb234
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Dec 20 08:06:06 2022 +0100

        Squashed commit of the following:

        commit cec398dcf0a14f7e433b2baec849e29001358839
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:00:30 2022 +0100

            -

        commit 885f08e18f7983723a0944bd90cec646c869ee89
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:18:38 2022 +0100

            - bug fix in progress for #970

        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:30:41 2022 +0100

            - now user can insert list of strings as an input for a job

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 6fa2432f7226be0d54f7ce608719c0d59863d367
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:09:59 2022 +0100

        Squashed commit of the following:

        commit 553235691beedd110072226ff20b6b49a6aad1ee
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:06:41 2022 +0100

            - orient first then remove/add stuff

    commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
    Merge: eaa4ccbd f07779ce
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:08:49 2022 +0100

        Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

    commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:08:30 2022 +0100

        Squashed commit of the following:

        commit 553235691beedd110072226ff20b6b49a6aad1ee
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:06:41 2022 +0100

            - orient first then remove/add stuff

    commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
    Merge: 356e625e f07779ce
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Fri Dec 16 12:44:21 2022 +0000

        Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

        Ms 2022 08 18 yellow wo 970

    commit f07779ce30667465ea1aba424085e8978827641a
    Merge: 57336b82 dcc2c882
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Dec 16 13:24:09 2022 +0100

        Merge branch 'master' into ms-2022-08-18-yellow-wo-970

    commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 15 16:32:57 2022 +0100

        Squashed commit of the following:

        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:30:41 2022 +0100

            - now user can insert list of strings as an input for a job

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
    Merge: 8ac386cd 57336b82
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:28:30 2022 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:27:11 2022 +0100

        Squashed commit of the following:

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 57336b825cb95aecb3dfff78ab571bb85e906073
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Dec 8 11:41:44 2022 +0100

        Update package.json

        just to trigger action

    commit c6c3ed0b16414d528684d63befca6a01634683d0
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 11:57:33 2022 +0100

        Update package.json

        just to trigger action

    commit 614b01c80882557160777ba96abc92c2d328112e
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 09:38:38 2022 +0100

        Update package.json

        just to trigger action

    commit c0d2b3858d074b33303eef48e42f11e7eefac474
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 08:39:23 2022 +0100

        Update package.json

        just to trigger action

    commit bbf6f91e8498586d666204c3493405c4ca4e7268
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 08:31:30 2022 +0100

        Update package.json

        just to trigger rebuild

    commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:28:17 2022 +0100

        Squashed commit of the following:

        commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:14:43 2022 +0100

            - #1001

    commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 1 09:10:59 2022 +0100

        Squashed commit of the following:

        commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:08:03 2022 +0100

            - implemented #1012

    commit f8eb4067e0ece9d170e3405bebe21a689927442c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 29 10:24:56 2022 +0100

        Squashed commit of the following:

        commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:22:31 2022 +0100

            - fixed #1013

        commit db173bcdd76574055d5132ec3cd34012a727656d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 14:39:16 2022 +0100

            Squashed commit of the following:

            commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
            Merge: 8712fddb 87870aa1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:40:54 2022 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:39:15 2022 +0100

                Squashed commit of the following:

                commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:30:45 2022 +0100

                    - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 08:16:31 2022 +0100

                    - #876 seems to be done

            commit 87870aa192d10344ae7eb384618ef137986862d0
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 09:36:12 2022 +0100

                Update package.json

                just to trigger build action

    commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
    Merge: 8712fddb 87870aa1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:40:54 2022 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:39:15 2022 +0100

        Squashed commit of the following:

        commit cb3969273bde4d917b38c56485a05b1be23cf9cd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:30:45 2022 +0100

            - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 08:16:31 2022 +0100

            - #876 seems to be done

    commit 87870aa192d10344ae7eb384618ef137986862d0
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 09:36:12 2022 +0100

        Update package.json

        just to trigger build action

    commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 09:08:21 2022 +0100

        Squashed commit of the following:

        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 08:16:31 2022 +0100

            - #876 seems to be done

    commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
    Merge: 0530324b 7b7cbe99
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Mon Nov 14 09:59:45 2022 +0000

        Merge pull request #329 from m2ms/#977-ngl

        Fast switching between snapshots

    commit 7b7cbe99952000f6c550727e082cb920cafa144c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 8 10:04:33 2022 +0100

        - #977 - fixed issue with ngl settings were not saved and restored

    commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 7 10:14:18 2022 +0100

        Squashed commit of the following:

        commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Nov 3 08:01:05 2022 +0100

            - fixed ngl view was not tracked

    commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
    Merge: 931a5aea 5746062a
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 15:51:39 2022 +0100

        Merge pull request #325 from xchem/production

        Action doc tweaks

    commit 5746062aacabb5201feefed8ea09e3e34066a175
    Merge: b0e75d17 dc2ff23d
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 15:50:50 2022 +0100

        Merge pull request #324 from alanbchristie/production

        Action doc tweaks

    commit dc2ff23d773157c74f864931e06ccb0fd21cf335
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 15:48:48 2022 +0100

        Add doc for production workflow

    commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 15:35:27 2022 +0100

        Tweak action docs

    commit 931a5aea583997a80bab66d8099f743529f8d98f
    Merge: cb4246e7 b0e75d17
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 12:51:21 2022 +0100

        Merge pull request #323 from xchem/production

        Production now triggers stack

    commit b0e75d174217c507b2db2f4d6329e4ed2315e887
    Merge: cb4246e7 ac3297e4
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 12:50:08 2022 +0100

        Merge pull request #322 from alanbchristie/production

        Production now triggers stack

    commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 12:49:11 2022 +0100

        Production now triggers stack

        Fix for BE tag

    commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
    Merge: dcc2c882 dec6f785
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 11:15:06 2022 +0100

        Merge pull request #321 from alanbchristie/production

        CI changes for new branch policy

    commit dec6f785663f6e3050262c5a4b4704109d2e446a
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 10:58:08 2022 +0100

        Removed personal repo references

    commit 2147aa18af1211a32f55e228c1023491008204ac
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Oct 26 10:00:07 2022 +0200

        - updated squonk project id for dev stacks

    commit b2bc6e79197baa4c7336822fca2bfbf54eded377
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Oct 24 16:47:24 2022 +0200

        - first real version of the final implementation of ticket #977
        - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

    commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Oct 20 07:32:33 2022 +0200

        - nearly complete issue #977

    commit dcc2c8824378b69e118564a664b332456d5632e4
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Sep 29 12:48:42 2022 +0200

        edited in correct squonk project id

    commit 725f6d5267d568afd34f29f22b0869458d759832
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Sep 29 12:47:31 2022 +0200

        removed Upload button from Job popup (#320)

        * - initial commit

        * - checkpoint

        * - new backend

        * Update package.json

        bumped version to 0.10.109

        * Update package.json

        bumped version to 0.10.111

        * Update package.json

        version bumped to 0.10.112

        * Update package.json

        bumped version to 0.10.113

        * Update package.json

        bumped version to 0.10.114

        * Update package.json

        bumped version to 0.10.115

        * - added new back-end

        * Squashed commit of the following:

        commit 949573bd930afaa0171a728f05dafa08c2425341
        Merge: deb0d1c3 74ea6613
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 06:56:52 2022 +0200

            Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

        commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit e2a00641039dd34b348ce2084eefd8f33ae04343
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jun 6 06:05:49 2022 +0200

            Squashed commit of the following:

            -bumped version to 0.10.93

            commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:53:32 2022 +0200

                #883 - Remove unused selection action

            commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:43:17 2022 +0200

                #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

            commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:10:44 2022 +0200

                #883 - Remove associatedDownloadTagName from selectionReducers

            commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:54:57 2022 +0200

                #883 - Remove displayedMoleculesInHitNav from selectionReducers

            commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:08:28 2022 +0200

                #883 - Remove displayAllInNGLList from selectionReducers

            commit f3b3b10a879447705b2709b88d48b62fe50e14cc
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:59:23 2022 +0200

                #883 - Remove listAllList from selectionReducers

            commit 02aa5955918abace2d5473e89bb9260ff10d7338
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:40:29 2022 +0200

                #883 - Move categoryList from selectionReducers to apiReducers

            commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 08:43:26 2022 +0200

                #883 - Move tagList from selectionReducers to apiReducers

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

            #885 - Add the possibility to recompile variables before job launching

        commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

            #885 - Adjust and compile schema

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

            #885 - Reuse the merged schema in JobVariablesDialog

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

            #885 - Add new job definition

        * updated fragmentstein job spec

        Squashed commit of the following:

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

            #885 - Add the possibility to recompile variables before job launching

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

            #885 - Adjust and compile schema

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

            #885 - Reuse the merged schema in JobVariablesDialog

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

            #885 - Add new job definition

        * - changed default value for output file

        * Update package.json

        bumped version to 0.10.116

        * - new backend test

        * Update package.json

        bumped version to 0.10.120

        * Update package.json

        bumped version to 0.10.122

        * - new version of the backend added

        * Squashed commit of the following:

        commit c6c605ed21996d470a36b0de0a51a4e145792884
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 4 09:25:18 2022 +0200

            - fixed #949

        commit 2118900c0f7b92aa3ff7b6a1aefd943ab506c287
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 3 15:42:41 2022 +0200

            - fixed problem where there are no selected inputs for a job

        commit db6f6436af34cfead10d7e788bf4d9c3a9029294
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 3 08:47:55 2022 +0200

            - fixed #947
            - bumped version to 0.10.124

        commit ff46c9cfd817aea7440a94f6ca115604f43dfc71
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Jul 29 09:19:30 2022 +0200

            - pushed remote debugging on by accident

        commit ae2c855315830e02407fac25febcc00d28366438
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:53:44 2022 +0200

            - bumped version to 0.10.122

        commit 9f9c0e3ed7ea51b6e1c2827ebe975b5f96c4f8f8
        Merge: e43d812c 93455bdf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:53:12 2022 +0200

            Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

        commit e43d812c8db635949389722976af03f63ffd0fa0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:50:59 2022 +0200

            - fixed #928
            - partial fix (one of the cases) #939

        commit 93455bdf313191b865bd5ccb9eda4c160f9dd1cd
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 13:00:24 2022 +0200

            Adjust layout behaviour

        commit 91171830ff366d1a3fd7406cfc5472257c9a565b
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 11:33:29 2022 +0200

            Adjust overflows

        commit fcd15f864eddc0fa24b3f3a1aaac8c87e3ae8240
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 11:08:07 2022 +0200

            Add LHS resizing

        commit 73d5014e6682a6dc39462c465f68cdfb7a641eca
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 08:59:56 2022 +0200

            Refactor implementation

        commit 317cf2fb3f278f4be73735a6aa014801868f6f77
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jul 27 14:25:15 2022 +0200

            Initial resizing implementation

        commit 07b34f2786866a0ffdc19e56afcc7fac1a3789e6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 26 07:22:39 2022 +0200

            - fixed #935

        commit 92e7201639ff341004e5d6105db9abfbd8b786a3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Jul 20 09:59:48 2022 +0200

            Update package.json

            -bumped version to 0.10.121

        commit 6e86e0537d60c25f9e3fcbe50426fb477034ff4e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 15:28:04 2022 +0200

            - job table hidden for this release
            - bumped version to 0.10.119

        commit 9ec4e84c799cc38ae59fa7c9ebf7a2e6efec7917
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 15:01:44 2022 +0200

            - fixed inputs folder
            - bumped version to 0.10.118

        commit a6283f00d717712cc1d7601f02a68965833dbb82
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:28:27 2022 +0200

            Update package.json

            bumped version to 0.10.117

        commit 6a0987f34eecf1a2f3322acbd9642e3d1b188250
        Merge: 335cbd1f acb6bd58
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:24:39 2022 +0200

            Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

        commit 335cbd1fd6dcd9a8d85274477bb2625d2ce858c3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:23:35 2022 +0200

            - hardcoded inputs directory

        commit acb6bd586c9cf53cc2906923a85c960e5f29593b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 09:58:27 2022 +0200

            Update package.json

            bumped version to 0.10.110

        commit afa9f245c5e36a1ae9eeaa67ba26e29f8f58460c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 07:22:38 2022 +0200

            - bumped version to 0.10.108

        commit 2966391d406767f5cd77fcda471bd0d7ad04a092
        Author: Boris Kovar…
boriskovar-m2ms added a commit that referenced this issue Aug 7, 2023
commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 08:43:26 2022 +0200

                    #883 - Move tagList from selectionReducers to apiReducers

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

                #885 - Add the possibility to recompile variables before job launching

            commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

                #885 - Adjust and compile schema

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

                #885 - Reuse the merged schema in JobVariablesDialog

            commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 08:36:34 2022 +0200

                #885 - Add new job definition

            * updated fragmentstein job spec

            Squashed commit of the following:

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

                #885 - Add the possibility to recompile variables before job launching

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

                #885 - Adjust and compile schema

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

                #885 - Reuse the merged schema in JobVariable…
boriskovar-m2ms added a commit that referenced this issue Aug 8, 2023
commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 08:43:26 2022 +0200

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

            commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

            commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 08:36:34 2022 +0200

            * updated fragmentstein job spec

            Squashed commit of the following:

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

            commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 08:36:34 2022 +0200

            * - changed default value for output file

            * Update package.json

            bumped version to 0.10.116

            * - new backend test

            * Update package.json

            bumped version to 0.10.120

            * Update package.json

            bumped version to 0.10.122

            * - new version of the backend added

            * Squashed commit of the following:

            commit c6c605ed21996d470a36b0de0a51a4e145792884
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Aug 4 09:25:18 2022 +0200

                - fixed #949

            commit 2118900c0f7b92aa3ff7b6a1aefd943ab506c287
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Aug 3 15:42:41 2022 +0200

                - fixed problem where there are no selected inputs for a job

            commit db6f6436af34cfead10d7e788bf4d9c3a9029294
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Aug 3 08:47:55 2022 +0200

                - fixed #947
                - bumped v…
boriskovar-m2ms added a commit that referenced this issue Aug 9, 2023
commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
Merge: 4caeef7b 8b73ee22
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 8 11:38:09 2023 +0200

    Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 8 11:37:40 2023 +0200

    - updated table styling

commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Mon Aug 7 13:24:08 2023 +0200

    Update package.json

    just to trigger build action

commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Aug 7 12:55:44 2023 +0200

    - table is now autosized

commit e867e77c40598a12fa10ca6ab526880274936752
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Mon Aug 7 09:03:11 2023 +0200

    #1106 edited columns size

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit aff597978d59b4095f7e76be3ee834ffc5bc0873
Merge: 81a2e968 d7370794
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:10:24 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit 81a2e96813768ec718f50389bef30cbc4bc82aff
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:09:42 2023 +0200

    - navigation arrows highlighting

commit d737079487147e02f1703f543d8264536e6c5f80
Merge: 899b7e36 48299e86
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 14:47:09 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 899b7e36076b30af93e3fe6fdea0077b13737ff1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 13:18:20 2023 +0200

    - highlighted arrows

commit 7991d5c18c24c6663fe2c5d8effcc7cd048951ac
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 10:16:02 2023 +0200

    - when creating project a default snapshot is created automatically

commit 3bf735365696020858d5c2b718250c106578debf
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 09:22:30 2023 +0200

    Squashed commit of the following:

    commit 040d9bdbf30fb9dc239969916f108cb5056911c0
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Thu Jul 27 08:38:51 2023 +0200

        #576 fixed design bug

commit 3d18d6d017c3c2ab01a75a2aef1823e252a802c8
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jul 26 21:04:39 2023 +0200

    - first bunch of fixes

commit aa097721670867f85d5a789cd41a548bb57d16b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jul 26 17:36:34 2023 +0200

    - minor fix to button color behavior

commit a0f0933086ebeadb1d1e47879021121a49f3cde7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jul 26 16:57:32 2023 +0200

    - fixed select displayed hits button

commit 6f200d2c86dfb14aad6ea3776842841766cfccfe
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jul 26 13:32:39 2023 +0200

    Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 08:43:26 2022 +0200

                    #883 - Move tagList from selectionReducers to apiReducers

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

                #885 - Add the possibility to recompile variables before job launching

            commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

                #885 - Adjust and compile schema

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

                #885 - Reuse the merged schema in JobVariablesDialog

            commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 08:36:34 2022 +0200

                #885 - Add new job definition

            * updated fragmentstein job spec

            Squashed commit of the following:

            commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jul 11 14:42:22 2022 +0200

                #885 - Add the possibility to recompile variables before job launching

            commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Mon Jun 6 12:28:04 2022 +0200

                #885 - Adjust and compile schema

            commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 12:53:17 2022 +0200

                #885 - Reuse the merged schema in JobVariablesDialog

            commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Fri Jun 3 08:36:34 2022 +0200

                #885 - Add new job definition

            * - changed default value for output file

            * Update package.json

            bumped version to 0.10.116

            * - new backend test

            * Update package.json

            bumped version to 0.10.120

            * Update package.json

            bumped version to 0.10.122

            * - new version of the backend added

            * Squashed commit of the following:

            commit c6c605ed21996d470a36b0de0a51a4e145792884
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Aug 4 09:25:18 2022 +0200

                - fixed #949

            commit 2118900c0f7b92aa3ff7b6a1aefd943ab506c287
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Aug 3 15:42:41 2022 +0200

                - fixed problem where there are no selected inputs for a job

            commit db6f6436af34cfead10d7e788bf4d9c3a9029294
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Aug 3 08:47:55 2022 +0200

                - fix…
boriskovar-m2ms added a commit that referenced this issue Aug 10, 2023
* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - added debug info

* - reworked show inputs in jobs table

* - trying to fix a bug with inputs

* - fixes because can't debug this locally

* - implemented #890

* - added debug logs

* fixed problem with entries function

* - added more logs

* - authorize user for viewing squonk job

* - fixed problem with id

* - added message when access to squonk is denied

* Update package.json

to trigger build action

* Update package.json

triggering build action

* - fixed bugs found in staging

* - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

* Update package.json

to trigger build action

* Update package.json

trigger build action

* - updated build-dev.yaml

* Update package.json

to trigger build action

* Update package.json

just to trigger build action

* - minor typo fix

* - before the release fixes

* Update package.json

triggering the build action

* - new BE image

* - can't go to squonk job execution page if the url is not available

* - Add status to the job table
- Revert the disabled buttons if I can't run the job for the target
- Show the exception from squonk access when click OPEN IN SQUONK and show error messag

* frontend fixes before green release:
- If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

* - hopefully fixed problem with reloading older projects

* - fixed bad merge from staging

* - schema expansion test

* Update package.json

just to trigger build action

* Update package.json

to trigger build action

* - add button to job table to copy snapshot associated with the job run

* - fixed problem for 'add button to job table to copy snapshot associated with the job run'

* added searchString to action and TimeLine

* #576 restored searchString from snapshot for RHS

* #576 edited time for search response

* #576 restore search string for hit navigator

* #576 Restore search for project history

* #978 added new button and conditions for showing

* #978 change modal background and position

* #978 setted modal window position under buttons

* #978 fixed onClick for close modal

* #576 edited tag detail added toggle union/intersec

* #576 added buttons to Tag Detail

* #978 added new column and sort by columns

* #978 edited sort and filter project list table

* #978 edited filter and search data

* #576 edit width count

* Update package.json

- just to trigger build action

* - fixed instance when project is missing from session-project (which AFAIK should never happen though)

* Update package.json

- just to trigger build action

* #978 filter for project list and other fix

* #576 edited LHS height and Tag detail colors

* #576 added "Select displayed button"

* #978 edited save change for NGL

* - semicolons?

* -merge

* Squashed commit of the following:

commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Jul 4 08:00:12 2023 +0200

    - fixed #1073

commit ae8406cfdb405dce01d075de39754d2acd6cc55a
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Jun 7 08:26:20 2023 +0200

    Squashed commit of the following:

    commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
    Merge: d266f99b 949f4734
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 11:17:58 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 10:50:48 2023 +0200

        - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    commit 62784948247ed7f0521b10418b1b8a271e7062f0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 26 09:43:11 2023 +0200

        - add button to job table to copy snapshot associated with the job run

    commit 949f47340369a671516a7c6317f8f7e35ba86984
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 14:47:39 2023 +0200

        Ms 2022 08 18 yellow (#351)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

        * - schema expansion test

        * Update package.json

        just to trigger build action

        * Update package.json

        to trigger build action

    commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
    Merge: eaadb729 8d437c3f
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 14:35:37 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit eaadb729f90441417c899cf4869e26a1b789bb42
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 12:39:23 2023 +0200

        Update package.json

        to trigger build action

    commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 11:26:05 2023 +0200

        Update package.json

        just to trigger build action

    commit 09007706e2ec26c6006d7d19a756129d093ac306
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Apr 24 09:36:38 2023 +0200

        - schema expansion test

    commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 17:00:05 2023 +0200

        Ms 2022 08 18 yellow (#350)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

    commit 7790dfbc261a302018423ce1a506eb33eb48d683
    Merge: bf42cc20 45438127
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 16:57:36 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit bf42cc20b514c4b3708b606557cb576324f02a20
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 16:57:18 2023 +0200

        - fixed bad merge from staging

    commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:47:17 2023 +0200

        Ms 2022 08 18 yellow (#349)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

    commit 45438127c520d201677dd1b5c1fd876cdfb035e4
    Merge: 73b5d4c7 dcbf19fd
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:46:11 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
    Merge: b74587f0 1447b079
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:28:34 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 15:27:49 2023 +0200

        - hopefully fixed problem with reloading older projects

    commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:42:14 2023 +0200

        Ms 2022 08 18 yellow (#348)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
    Merge: b774ac60 d7b5e5c2
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:41:03 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Apr 11 12:05:53 2023 +0200

        frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 14:20:00 2023 +0200

        - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 10:43:08 2023 +0200

        Ms 2022 08 18 yellow (#347)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

    commit 17e89cefe8264584ebe0fadc637a1fac542704ac
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 10:23:27 2023 +0200

        - can't go to squonk job execution page if the url is not available

    commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Apr 6 09:11:52 2023 +0200

        Minor fixes before the release (#346)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

    commit c8b5f20dd521c7007f08531736541ca84b041a85
    Merge: 8d500638 2cd48e04
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 14:35:17 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8d50063887bc2f6335550f15fe69cc93b17be30e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 14:34:49 2023 +0200

        - new BE image

    commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
    Merge: 0fddd791 b20adee8
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 13:00:20 2023 +0200

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 12:09:36 2023 +0200

        Update package.json

        triggering the build action

    commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Apr 5 10:44:24 2023 +0200

        - before the release fixes

    commit b10160928bff787161a140e4cffd8aa783a4c482
    Merge: f6699d10 9f5f2b7c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 31 09:38:39 2023 +0200

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 31 09:37:22 2023 +0200

        - minor typo fix

    commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 14:00:10 2023 +0100

        Update package.json

        just to trigger build action

    commit 5a37013c71469f9433c36d956174b1efc1e698ab
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 12:43:27 2023 +0100

        Update package.json

        to trigger build action

    commit b54cdaa4ea816719128c07939a14a99152a8e990
    Merge: 5dfc38be d6d5216d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 11:36:29 2023 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 11:35:57 2023 +0100

        - updated build-dev.yaml

    commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 08:52:55 2023 +0100

        Update package.json

        trigger build action

    commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Mar 24 08:46:51 2023 +0100

        Update package.json

        to trigger build action

    commit b20adee8140c7f46573eb5e7525e97427d23d4d4
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 17:29:15 2023 +0100

        Ms 2022 08 18 yellow (#345)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
    Merge: d777f117 4cb92f6c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 10:50:04 2023 +0100

        Merge branch 'staging' into ms-2022-08-18-yellow

    commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 10:17:34 2023 +0100

        - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    commit ae0cbdc8540aa440c776be3b84508c710a215d36
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 16 09:01:48 2023 +0100

        - fixed bugs found in staging

    commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 13:05:06 2023 +0100

        Ms 2022 08 18 yellow (#344)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

    commit bc13d845aa206aa7d8d151a8bb53f53335761084
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 10:38:18 2023 +0100

        Update package.json

        triggering build action

    commit 49d1ad57042d353f76c7368944601a8d64e44596
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 10:32:30 2023 +0100

        Update package.json

        to trigger build action

    commit fd0df1c021010f4f5e028090493464721b8b2600
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Mar 9 09:11:44 2023 +0100

        - added message when access to squonk is denied

    commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 14:35:57 2023 +0100

        - fixed problem with id

    commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 14:18:47 2023 +0100

        - authorize user for viewing squonk job

    commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:58:15 2023 +0100

        - added more logs

    commit d97a512d75aa621be77ee69b547b21e1653386e1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:19:18 2023 +0100

        fixed problem with entries function

    commit 7e28e41d96e57998b979752d3651304bf36713c9
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 12:13:08 2023 +0100

        - added debug logs

    commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Mar 8 11:29:23 2023 +0100

        - implemented #890

    commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:50:08 2023 +0100

        - fixes because can't debug this locally

    commit 59779b6b80ec7e21af68b219a543a017aa837b14
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:29:05 2023 +0100

        - trying to fix a bug with inputs

    commit 76ccc089efc43589bb381ea6589567dce538aa8b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 18:12:34 2023 +0100

        - reworked show inputs in jobs table

    commit e862c726c81b0328cc9b7538d9820481b7d85cd8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:46:29 2023 +0100

        - added debug info

    commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:33:00 2023 +0100

        - added debug info

    commit c4b11af95a56786493e13735ac92b1b1f766af79
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 16:13:41 2023 +0100

        - added debug info

    commit 6adc86d4f95a362b38747e001f55bde2a104baff
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:53:49 2023 +0100

        - added debug info

    commit e42ed05162106109c927e80620d67b5af31b7ef1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:34:10 2023 +0100

        - added debug info

    commit 39034c54b97f4da301365c69d985640a66c75469
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 15:09:04 2023 +0100

        - added debug info

    commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Sun Mar 5 14:48:45 2023 +0100

        - added debug info

    commit 13a00cf2ba8f4ae13de4865096f9def349acd158
    Merge: 0a36ae5c d0317f60
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Tue Feb 21 20:43:31 2023 +0000

        Merge pull request #341 from m2ms/ms-2022-08-18-yellow

        Ms 2022 08 18 yellow release

    commit d0317f607def3b6e1a5651554b338161fce4f040
    Merge: 53164d21 8c4ca1d0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:58:48 2023 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 53164d21b23e7a918a772ced6292817b4306031e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Feb 20 13:57:25 2023 +0100

        Squashed commit of the following:

        commit 19b3910d84f9707b8047524cfe44dfa1f8696644
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:33:18 2023 +0100

            - new dev BE

        commit af427c71d9499c975e12b314202bdb0f0ec13826
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Feb 17 08:44:14 2023 +0100

            Update package.json

            just to trigger build action

        commit 4cb19eb371b0147dfc51b704a36dba842543d311
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 16 09:09:27 2023 +0100

            Update package.json

            just to trigger build action

        commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Feb 15 14:01:32 2023 +0100

            Update package.json

            just to trigger build action

        commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Feb 14 08:50:44 2023 +0100

            - fixed direct links and direct download links

        commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 14:02:18 2023 +0100

            - fixed job name

        commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 13:28:20 2023 +0100

            - added fragmenstein-combine-multi-scoring.json

        commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 13:25:35 2023 +0100

            - checkpoint

        commit b43373e1c228d9e46f4c831fc46269d614013e92
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 10:43:27 2023 +0100

            - fixed problem where UI would crash if there was a problem during job file transfer of job launch

        commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 9 09:54:36 2023 +0100

            - fixed bad project capture from url

        commit 7d588895cebd0e363aa5d62b36770499364aef06
        Merge: 11180a5c 4fc7f7bd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 09:27:51 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 11180a5c0142ea18624ae14ddaad16793fdcb435
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 09:26:31 2023 +0100

            - prevent crash when there is a project associated with target which user is not authorized to see

        commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Feb 8 07:25:12 2023 +0100

            Update package.json

            just to trigger build action

        commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 15:43:38 2023 +0100

            Update package.json

            just to trigger the build action

        commit d0d429c473307ce2bfa825ad9e556084082accd8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 15:20:25 2023 +0100

            Update package.json

            just to trigger the build action

        commit fcf377b863abf9110e1c0ce752b29bce073349cf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 14:51:17 2023 +0100

            - fixed problem when job config windows closes on error

        commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
        Merge: 5a3d56bf 0f8e702a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 13:19:16 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 13:18:30 2023 +0100

            - now sending id of the project and not target_access_string

        commit 0f8e702a023e2f786c5ba46eab2205f158a75480
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:59:19 2023 +0100

            Update package.json

            just to trigger build action

        commit 585076db67dc32b58083c184e1ca11a6dddc434b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:39:19 2023 +0100

            - fixed problem when project pane was not showing up right after a project was created

        commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 12:08:23 2023 +0100

            - fix for missing project pane

        commit ba0a1fe55bd53f719d31d795d71877d81366cac9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Feb 2 09:05:50 2023 +0100

            - version for job execution - broken UI

        commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
        Merge: 51e97af1 a42cad71
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 1 13:58:27 2023 +0100

            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

        commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Feb 1 13:57:49 2023 +0100

            - partial implementation of #1020

        commit a42cad7193b8c8f02c04378bba01f6f44114ec88
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 26 08:34:01 2023 +0100

            Update package.json

            just to trigger build action

        commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Jan 25 09:39:06 2023 +0100

            Update package.json

            just to trigger build action

        commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 15:10:11 2023 +0100

            Update package.json

            just to trigger the build action

        commit e8e5657cc5f7beecf5813040210605b6cf410cef
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 14:04:56 2023 +0100

            Update package.json

            just to trigger build

        commit 24dc912bfdae3bec9c52867f2d638754635cecbb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:49:58 2023 +0100

            - sensitive data moved to .env file

        commit a98c51751368104300a872f116cc22acc09cec44
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:49:06 2023 +0100

            - added .env to gitignore

        commit 13b4bed082612315afc948192fe758fb42edf63d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 24 12:47:56 2023 +0100

            - mending an error

        commit 5b74eb4326389e11b923b560f6603586bfc3b87c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 18 09:52:19 2023 +0100

            - checkpoint

        commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 17 10:10:27 2023 +0100

            - initial implementation #1020

    commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Jan 16 11:35:37 2023 +0100

        Update package.json

        just to trigger build action

    commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Jan 13 10:47:51 2023 +0100

        Update package.json

        just to trigger build action

    commit 0d6abaa08dc7a174d915d33e21a1667accd39423
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jan 12 10:18:23 2023 +0100

        Update package.json

        just to trigger build action

    commit d5905966cb9bf2994f93668911873108832d7578
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 11 11:02:25 2023 +0100

        - forgot to reset debug constants

    commit df7057032baa70df6451b7faf0a232fa75a1e55b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jan 11 08:05:23 2023 +0100

        - minor fix for upload_status

    commit 698d123634ded171f161c3bb9f27e4e1600730be
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 15:42:30 2023 +0100

        - minor fix for upload_status

    commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 15:26:03 2023 +0100

        - upload_failed now taken into the account

    commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 13:35:25 2023 +0100

        Update package.json

        - just to trigger build action

    commit e6fbd6d213418dfd9708e206da341e8e37e776c3
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Jan 10 11:54:17 2023 +0100

        Update package.json

        just to trigger build action

    commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Dec 23 13:01:20 2022 +0100

        - updated README.md

    commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
    Merge: 6a7a0dda 782b84b5
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Tue Dec 20 18:11:19 2022 +0000

        Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

        Animate to new orientation matrix first

    commit 5504bd464e1d699833f258b994e344cb339cb234
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Dec 20 08:06:06 2022 +0100

        Squashed commit of the following:

        commit cec398dcf0a14f7e433b2baec849e29001358839
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:00:30 2022 +0100

            -

        commit 885f08e18f7983723a0944bd90cec646c869ee89
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:18:38 2022 +0100

            - bug fix in progress for #970

        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:30:41 2022 +0100

            - now user can insert list of strings as an input for a job

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 6fa2432f7226be0d54f7ce608719c0d59863d367
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:09:59 2022 +0100

        Squashed commit of the following:

        commit 553235691beedd110072226ff20b6b49a6aad1ee
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:06:41 2022 +0100

            - orient first then remove/add stuff

    commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
    Merge: eaa4ccbd f07779ce
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:08:49 2022 +0100

        Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

    commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 19 10:08:30 2022 +0100

        Squashed commit of the following:

        commit 553235691beedd110072226ff20b6b49a6aad1ee
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:06:41 2022 +0100

            - orient first then remove/add stuff

    commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
    Merge: 356e625e f07779ce
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Fri Dec 16 12:44:21 2022 +0000

        Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

        Ms 2022 08 18 yellow wo 970

    commit f07779ce30667465ea1aba424085e8978827641a
    Merge: 57336b82 dcc2c882
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Fri Dec 16 13:24:09 2022 +0100

        Merge branch 'master' into ms-2022-08-18-yellow-wo-970

    commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 15 16:32:57 2022 +0100

        Squashed commit of the following:

        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:30:41 2022 +0100

            - now user can insert list of strings as an input for a job

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
    Merge: 8ac386cd 57336b82
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:28:30 2022 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Dec 14 06:27:11 2022 +0100

        Squashed commit of the following:

        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:07:28 2022 +0100

            - initial implementation of #970

        commit 89010ea549ade47427b6454c3b92a37dff0c449b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:26:35 2022 +0100

            - #1001

    commit 57336b825cb95aecb3dfff78ab571bb85e906073
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Dec 8 11:41:44 2022 +0100

        Update package.json

        just to trigger action

    commit c6c3ed0b16414d528684d63befca6a01634683d0
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 11:57:33 2022 +0100

        Update package.json

        just to trigger action

    commit 614b01c80882557160777ba96abc92c2d328112e
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 09:38:38 2022 +0100

        Update package.json

        just to trigger action

    commit c0d2b3858d074b33303eef48e42f11e7eefac474
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 08:39:23 2022 +0100

        Update package.json

        just to trigger action

    commit bbf6f91e8498586d666204c3493405c4ca4e7268
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Dec 7 08:31:30 2022 +0100

        Update package.json

        just to trigger rebuild

    commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Dec 5 08:28:17 2022 +0100

        Squashed commit of the following:

        commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:14:43 2022 +0100

            - #1001

    commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Dec 1 09:10:59 2022 +0100

        Squashed commit of the following:

        commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:08:03 2022 +0100

            - implemented #1012

    commit f8eb4067e0ece9d170e3405bebe21a689927442c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 29 10:24:56 2022 +0100

        Squashed commit of the following:

        commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:22:31 2022 +0100

            - fixed #1013

        commit db173bcdd76574055d5132ec3cd34012a727656d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 14:39:16 2022 +0100

            Squashed commit of the following:

            commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
            Merge: 8712fddb 87870aa1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:40:54 2022 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:39:15 2022 +0100

                Squashed commit of the following:

                commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:30:45 2022 +0100

                    - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 08:16:31 2022 +0100

                    - #876 seems to be done

            commit 87870aa192d10344ae7eb384618ef137986862d0
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 09:36:12 2022 +0100

                Update package.json

                just to trigger build action

    commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
    Merge: 8712fddb 87870aa1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:40:54 2022 +0100

        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

    commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 13:39:15 2022 +0100

        Squashed commit of the following:

        commit cb3969273bde4d917b38c56485a05b1be23cf9cd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:30:45 2022 +0100

            - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 08:16:31 2022 +0100

            - #876 seems to be done

    commit 87870aa192d10344ae7eb384618ef137986862d0
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 09:36:12 2022 +0100

        Update package.json

        just to trigger build action

    commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 28 09:08:21 2022 +0100

        Squashed commit of the following:

        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 08:16:31 2022 +0100

            - #876 seems to be done

    commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
    Merge: 0530324b 7b7cbe99
    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
    Date:   Mon Nov 14 09:59:45 2022 +0000

        Merge pull request #329 from m2ms/#977-ngl

        Fast switching between snapshots

    commit 7b7cbe99952000f6c550727e082cb920cafa144c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Nov 8 10:04:33 2022 +0100

        - #977 - fixed issue with ngl settings were not saved and restored

    commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Nov 7 10:14:18 2022 +0100

        Squashed commit of the following:

        commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Nov 3 08:01:05 2022 +0100

            - fixed ngl view was not tracked

    commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
    Merge: 931a5aea 5746062a
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 15:51:39 2022 +0100

        Merge pull request #325 from xchem/production

        Action doc tweaks

    commit 5746062aacabb5201feefed8ea09e3e34066a175
    Merge: b0e75d17 dc2ff23d
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 15:50:50 2022 +0100

        Merge pull request #324 from alanbchristie/production

        Action doc tweaks

    commit dc2ff23d773157c74f864931e06ccb0fd21cf335
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 15:48:48 2022 +0100

        Add doc for production workflow

    commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 15:35:27 2022 +0100

        Tweak action docs

    commit 931a5aea583997a80bab66d8099f743529f8d98f
    Merge: cb4246e7 b0e75d17
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 12:51:21 2022 +0100

        Merge pull request #323 from xchem/production

        Production now triggers stack

    commit b0e75d174217c507b2db2f4d6329e4ed2315e887
    Merge: cb4246e7 ac3297e4
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 12:50:08 2022 +0100

        Merge pull request #322 from alanbchristie/production

        Production now triggers stack

    commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 12:49:11 2022 +0100

        Production now triggers stack

        Fix for BE tag

    commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
    Merge: dcc2c882 dec6f785
    Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
    Date:   Thu Oct 27 11:15:06 2022 +0100

        Merge pull request #321 from alanbchristie/production

        CI changes for new branch policy

    commit dec6f785663f6e3050262c5a4b4704109d2e446a
    Author: Alan Christie <alan.christie@matildapeak.com>
    Date:   Thu Oct 27 10:58:08 2022 +0100

        Removed personal repo references

    commit 2147aa18af1211a32f55e228c1023491008204ac
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Oct 26 10:00:07 2022 +0200

        - updated squonk project id for dev stacks

    commit b2bc6e79197baa4c7336822fca2bfbf54eded377
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Oct 24 16:47:24 2022 +0200

        - first real version of the final implementation of ticket #977
        - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

    commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Oct 20 07:32:33 2022 +0200

        - nearly complete issue #977

    commit dcc2c8824378b69e118564a664b332456d5632e4
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Sep 29 12:48:42 2022 +0200

        edited in correct squonk project id

    commit 725f6d5267d568afd34f29f22b0869458d759832
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Sep 29 12:47:31 2022 +0200

        removed Upload button from Job popup (#320)

        * - initial commit

        * - checkpoint

        * - new backend

        * Update package.json

        bumped version to 0.10.109

        * Update package.json

        bumped version to 0.10.111

        * Update package.json

        version bumped to 0.10.112

        * Update package.json

        bumped version to 0.10.113

        * Update package.json

        bumped version to 0.10.114

        * Update package.json

        bumped version to 0.10.115

        * - added new back-end

        * Squashed commit of the following:

        commit 949573bd930afaa0171a728f05dafa08c2425341
        Merge: deb0d1c3 74ea6613
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 06:56:52 2022 +0200

            Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

        commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit e2a00641039dd34b348ce2084eefd8f33ae04343
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jun 6 06:05:49 2022 +0200

            Squashed commit of the following:

            -bumped version to 0.10.93

            commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:53:32 2022 +0200

                #883 - Remove unused selection action

            commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:43:17 2022 +0200

                #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

            commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 11:10:44 2022 +0200

                #883 - Remove associatedDownloadTagName from selectionReducers

            commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:54:57 2022 +0200

                #883 - Remove displayedMoleculesInHitNav from selectionReducers

            commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 10:08:28 2022 +0200

                #883 - Remove displayAllInNGLList from selectionReducers

            commit f3b3b10a879447705b2709b88d48b62fe50e14cc
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:59:23 2022 +0200

                #883 - Remove listAllList from selectionReducers

            commit 02aa5955918abace2d5473e89bb9260ff10d7338
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 09:40:29 2022 +0200

                #883 - Move categoryList from selectionReducers to apiReducers

            commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
            Author: Anton Gasperak <anton.gasperak@m2ms.sk>
            Date:   Wed Jun 1 08:43:26 2022 +0200

                #883 - Move tagList from selectionReducers to apiReducers

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

            #885 - Add the possibility to recompile variables before job launching

        commit 74ea6613da0306f5251a440bdfdaa44f225ccb69
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jun 9 10:21:43 2022 +0200

            - mics changes

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

            #885 - Adjust and compile schema

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

            #885 - Reuse the merged schema in JobVariablesDialog

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

            #885 - Add new job definition

        * updated fragmentstein job spec

        Squashed commit of the following:

        commit 1e6311eddebf515f11a42e86fe3a1db7572dcdba
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jul 11 14:42:22 2022 +0200

            #885 - Add the possibility to recompile variables before job launching

        commit f98a7cac0c540cc9f9d52ec09814e86c80cee065
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Mon Jun 6 12:28:04 2022 +0200

            #885 - Adjust and compile schema

        commit d2e422992f95edb2a82435f03d8793f8c3e72bc1
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 12:53:17 2022 +0200

            #885 - Reuse the merged schema in JobVariablesDialog

        commit bd3ff2b3f22dada64afadd4df1685bcc46ab2d21
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Fri Jun 3 08:36:34 2022 +0200

            #885 - Add new job definition

        * - changed default value for output file

        * Update package.json

        bumped version to 0.10.116

        * - new backend test

        * Update package.json

        bumped version to 0.10.120

        * Update package.json

        bumped version to 0.10.122

        * - new version of the backend added

        * Squashed commit of the following:

        commit c6c605ed21996d470a36b0de0a51a4e145792884
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 4 09:25:18 2022 +0200

            - fixed #949

        commit 2118900c0f7b92aa3ff7b6a1aefd943ab506c287
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 3 15:42:41 2022 +0200

            - fixed problem where there are no selected inputs for a job

        commit db6f6436af34cfead10d7e788bf4d9c3a9029294
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 3 08:47:55 2022 +0200

            - fixed #947
            - bumped version to 0.10.124

        commit ff46c9cfd817aea7440a94f6ca115604f43dfc71
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Jul 29 09:19:30 2022 +0200

            - pushed remote debugging on by accident

        commit ae2c855315830e02407fac25febcc00d28366438
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:53:44 2022 +0200

            - bumped version to 0.10.122

        commit 9f9c0e3ed7ea51b6e1c2827ebe975b5f96c4f8f8
        Merge: e43d812c 93455bdf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:53:12 2022 +0200

            Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

        commit e43d812c8db635949389722976af03f63ffd0fa0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 28 14:50:59 2022 +0200

            - fixed #928
            - partial fix (one of the cases) #939

        commit 93455bdf313191b865bd5ccb9eda4c160f9dd1cd
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 13:00:24 2022 +0200

            Adjust layout behaviour

        commit 91171830ff366d1a3fd7406cfc5472257c9a565b
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 11:33:29 2022 +0200

            Adjust overflows

        commit fcd15f864eddc0fa24b3f3a1aaac8c87e3ae8240
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 11:08:07 2022 +0200

            Add LHS resizing

        commit 73d5014e6682a6dc39462c465f68cdfb7a641eca
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Thu Jul 28 08:59:56 2022 +0200

            Refactor implementation

        commit 317cf2fb3f278f4be73735a6aa014801868f6f77
        Author: Anton Gasperak <anton.gasperak@m2ms.sk>
        Date:   Wed Jul 27 14:25:15 2022 +0200

            Initial resizing implementation

        commit 07b34f2786866a0ffdc19e56afcc7fac1a3789e6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 26 07:22:39 2022 +0200

            - fixed #935

        commit 92e7201639ff341004e5d6105db9abfbd8b786a3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Jul 20 09:59:48 2022 +0200

            Update package.json

            -bumped version to 0.10.121

        commit 6e86e0537d60c25f9e3fcbe50426fb477034ff4e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 15:28:04 2022 +0200

            - job table hidden for this release
            - bumped version to 0.10.119

        commit 9ec4e84c799cc38ae59fa7c9ebf7a2e6efec7917
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 15:01:44 2022 +0200

            - fixed inputs folder
            - bumped version to 0.10.118

        commit a6283f00d717712cc1d7601f02a68965833dbb82
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:28:27 2022 +0200

            Update package.json

            bumped version to 0.10.117

        commit 6a0987f34eecf1a2f3322acbd9642e3d1b188250
        Merge: 335cbd1f acb6bd58
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:24:39 2022 +0200

            Merge branch 'PerspectivesAllfunctionality' of https://github.com/m2ms/fragalysis-frontend into PerspectivesAllfunctionality

        commit 335cbd1fd6dcd9a8d85274477bb2625d2ce858c3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 19 14:23:35 2022 +0200

            - hardcoded inputs directory

        commit acb6bd586c9cf53cc2906923a85c960e5f29593b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 09:58:27 2022 +0200

            Update package.json

            bumped version to 0.10.110

        commit afa9f245c5e36a1ae9eeaa67ba26e29f8f58460c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Jul 14 07:22:38 2022 +0200

            - bumped version to 0.10.108

        commit 2966391d406767f5cd77fcda471bd0d7ad04a092
        Author: Boris Kovar …
boriskovar-m2ms added a commit that referenced this issue Aug 10, 2023
* Squashed commit of the following:

commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasperak <anton.gaspera…
boriskovar-m2ms added a commit that referenced this issue Aug 15, 2023
* Squashed commit of the following:

commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasper…
boriskovar-m2ms added a commit that referenced this issue Aug 17, 2023
commit 901af8d8fa78a1c20e1d123b32961be0a62cdca3
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 17 09:36:58 2023 +0200

    Squashed commit of the following:

    commit b6c21b9f74a0281bcf9883a7da07165bbbdc5695
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 12:32:55 2023 +0200

        Squashed commit of the following:

        commit 60528709e830d424c07d290a7daf65cfcf3d9b2c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 12:31:31 2023 +0200

            - implemented #1129

    commit 86a1a7c9e26d899d34af4f6cdb85ceb19f207d0d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 09:49:39 2023 +0200

        Squashed commit of the following:

        commit 0550be26180579a58c85c520b0930c44f4999011
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 08:46:33 2023 +0200

            - fixed #1092

    commit fcf418da068289847e2d7da1d72a19570a8832b0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Aug 11 09:19:38 2023 +0200

        Squashed commit of the following:

        commit 5adc61adf29db66e7e09fd2d663c18d064305c33
        Merge: a8c90f24 1aef079a
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Thu Aug 10 15:31:40 2023 +0200

            Merge branch '#1118' of https://github.com/m2ms/fragalysis-frontend into #1118

        commit a8c90f245cf29df1cfee1b7053454cb7d0c0ad4a
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Thu Aug 10 15:31:35 2023 +0200

            #1118 fixed filter and sort bugs

        commit 1aef079a1728061be8c56f41967bf60666c79a17
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Aug 10 08:25:48 2023 +0200

            Update package.json

            triggering build action

        commit 594ac1970c7099ecfb94cecc3707a6cc9ef2894f
        Merge: 5564d2ce de09cdc6
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Wed Aug 9 11:59:25 2023 +0200

            Merge branch '#1106' into #1118

        commit 5564d2ceaaea797542514f1a9fdfd8901591fb2b
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Wed Aug 9 11:26:34 2023 +0200

            #1118 change priority and fix bugs

        commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
        Merge: 4caeef7b 8b73ee22
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 8 11:38:09 2023 +0200

            Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

        commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 8 11:37:40 2023 +0200

            - updated table styling

        commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Aug 7 13:24:08 2023 +0200

            Update package.json

            just to trigger build action

        commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Aug 7 12:55:44 2023 +0200

            - table is now autosized

        commit e867e77c40598a12fa10ca6ab526880274936752
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Mon Aug 7 09:03:11 2023 +0200

            #1106 edited columns size

        # Conflicts:
        #	js/components/projects/index.js
        #	package.json

commit 5fd5b90f510d95ab189dc2f074f55a8b4f223599
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 15 14:05:24 2023 +0200

    Squashed commit of the following:

    commit b6c21b9f74a0281bcf9883a7da07165bbbdc5695
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 12:32:55 2023 +0200

        Squashed commit of the following:

        commit 60528709e830d424c07d290a7daf65cfcf3d9b2c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 12:31:31 2023 +0200

            - implemented #1129

    commit 86a1a7c9e26d899d34af4f6cdb85ceb19f207d0d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 09:49:39 2023 +0200

        Squashed commit of the following:

        commit 0550be26180579a58c85c520b0930c44f4999011
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 08:46:33 2023 +0200

            - fixed #1092

    commit fcf418da068289847e2d7da1d72a19570a8832b0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Aug 11 09:19:38 2023 +0200

        Squashed commit of the following:

        commit 5adc61adf29db66e7e09fd2d663c18d064305c33
        Merge: a8c90f24 1aef079a
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Thu Aug 10 15:31:40 2023 +0200

            Merge branch '#1118' of https://github.com/m2ms/fragalysis-frontend into #1118

        commit a8c90f245cf29df1cfee1b7053454cb7d0c0ad4a
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Thu Aug 10 15:31:35 2023 +0200

            #1118 fixed filter and sort bugs

        commit 1aef079a1728061be8c56f41967bf60666c79a17
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Aug 10 08:25:48 2023 +0200

            Update package.json

            triggering build action

        commit 594ac1970c7099ecfb94cecc3707a6cc9ef2894f
        Merge: 5564d2ce de09cdc6
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Wed Aug 9 11:59:25 2023 +0200

            Merge branch '#1106' into #1118

        commit 5564d2ceaaea797542514f1a9fdfd8901591fb2b
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Wed Aug 9 11:26:34 2023 +0200

            #1118 change priority and fix bugs

        commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
        Merge: 4caeef7b 8b73ee22
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 8 11:38:09 2023 +0200

            Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

        commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 8 11:37:40 2023 +0200

            - updated table styling

        commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Aug 7 13:24:08 2023 +0200

            Update package.json

            just to trigger build action

        commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Aug 7 12:55:44 2023 +0200

            - table is now autosized

        commit e867e77c40598a12fa10ca6ab526880274936752
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Mon Aug 7 09:03:11 2023 +0200

            #1106 edited columns size

        # Conflicts:
        #	js/components/projects/index.js
        #	package.json

commit de6df997b0e29fe45b4305aac0b5eb846cfb3eae
Merge: e1f773fa 39f2f256
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 15:01:36 2023 +0200

    Merge branch 'staging' into staging

commit e1f773fa808140fc00f661682f2f183df78b66da
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 14:58:05 2023 +0200

    - fixed new job

commit 3c3751bd04008ca17c284417d3d0fc621e488d9c
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 13:01:07 2023 +0200

    Squashed commit of the following:

    commit 9047a700d7d206e2ab01fd6dff574162fc4483e3
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jun 15 09:53:13 2023 +0200

        - implemented all the features for #944

    commit 716eb0e7a8f11d34c8744cf20ad60ce3cbe41dd6
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Jun 8 09:13:42 2023 +0200

        - initial commit

commit 39f2f2560af0a94e69b5dd5c0622c41bf944c2c7
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 12:49:41 2023 +0200

    #944 - get job definitions from backend (#363)

    * - initial commit

    * - implemented all the features for #944

commit fb5645c53474eee344748b3cf5afb072080923cc
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 10:37:51 2023 +0200

    Update tagView.js (#362)

    fixed syntax error which prevented the build from happening

commit d9b983917a32d796ad9592236ed18184ab6909a5
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 10:21:48 2023 +0200

    #1124 new (#361)

    * Squashed commit of the following:

    commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
    Merge: c924ce24 bc13c611
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 2 16:35:15 2023 +0200

        Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

    commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 2 16:34:40 2023 +0200

        - fixed overflow for target list

    commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
    Merge: 7b88603b 74ffba6f
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Aug 2 16:03:35 2023 +0200

        Merge branch 'staging' into RedRelease20230525

    commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Tue Aug 1 15:29:56 2023 +0200

        #1112 fixed project list filter

    commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Tue Aug 1 08:41:52 2023 +0200

        #1112 fixed numb rows per page vs numb of projects

    commit 11df780229077611f93ab766c508c485d4bcb7b3
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Tue Aug 1 08:37:10 2023 +0200

        #1112 fixed pagination numbers in dropdown

    commit 1252aa88178d9b745e32a5c20c4ca353049545f1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 15:40:06 2023 +0200

        - fixed overflow

    commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 14:51:19 2023 +0200

        - fixed problem from #1112 where page-ination controls were not visible

    commit 62227fbd35fb110dc9dec60342beb66ef2582762
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 13:51:34 2023 +0200

        - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

    commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 13:33:30 2023 +0200

        - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

    commit f1d0db5f2161a14201b4e447317eeea640f80f06
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 11:01:21 2023 +0200

        - fixed #1117

    commit 1038f80e842e5df9490554d5244427402dd7d6b7
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 10:11:26 2023 +0200

        - fixed issue #1113

    commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jul 27 16:18:53 2023 +0200

        Redrelease20230525-firstBatch (#354)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

        * - schema expansion test

        * Update package.json

        just to trigger build action

        * Update package.json

        to trigger build action

        * - add button to job table to copy snapshot associated with the job run

        * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        * added searchString to action and TimeLine

        * #576 restored searchString from snapshot for RHS

        * #576 edited time for search response

        * #576 restore search string for hit navigator

        * #576 Restore search for project history

        * #978 added new button and conditions for showing

        * #978 change modal background and position

        * #978 setted modal window position under buttons

        * #978 fixed onClick for close modal

        * #576 edited tag detail added toggle union/intersec

        * #576 added buttons to Tag Detail

        * #978 added new column and sort by columns

        * #978 edited sort and filter project list table

        * #978 edited filter and search data

        * #576 edit width count

        * Update package.json

        - just to trigger build action

        * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

        * Update package.json

        - just to trigger build action

        * #978 filter for project list and other fix

        * #576 edited LHS height and Tag detail colors

        * #576 added "Select displayed button"

        * #978 edited save change for NGL

        * - semicolons?

        * -merge

        * Squashed commit of the following:

        commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 4 08:00:12 2023 +0200

            - fixed #1073

        commit ae8406cfdb405dce01d075de39754d2acd6cc55a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jun 7 08:26:20 2023 +0200

            Squashed commit of the following:

            commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
            Merge: d266f99b 949f4734
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Apr 26 11:17:58 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 26 10:50:48 2023 +0200

                - fixed problem for 'add button to job table to copy snapshot associated with the job run'

            commit 62784948247ed7f0521b10418b1b8a271e7062f0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 26 09:43:11 2023 +0200

                - add button to job table to copy snapshot associated with the job run

            commit 949f47340369a671516a7c6317f8f7e35ba86984
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 14:47:39 2023 +0200

                Ms 2022 08 18 yellow (#351)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

                * - fixed bad merge from staging

                * - schema expansion test

                * Update package.json

                just to trigger build action

                * Update package.json

                to trigger build action

            commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
            Merge: eaadb729 8d437c3f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 14:35:37 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit eaadb729f90441417c899cf4869e26a1b789bb42
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 12:39:23 2023 +0200

                Update package.json

                to trigger build action

            commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 11:26:05 2023 +0200

                Update package.json

                just to trigger build action

            commit 09007706e2ec26c6006d7d19a756129d093ac306
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 09:36:38 2023 +0200

                - schema expansion test

            commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 17:00:05 2023 +0200

                Ms 2022 08 18 yellow (#350)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

                * - fixed bad merge from staging

            commit 7790dfbc261a302018423ce1a506eb33eb48d683
            Merge: bf42cc20 45438127
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 16:57:36 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit bf42cc20b514c4b3708b606557cb576324f02a20
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 16:57:18 2023 +0200

                - fixed bad merge from staging

            commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:47:17 2023 +0200

                Ms 2022 08 18 yellow (#349)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

            commit 45438127c520d201677dd1b5c1fd876cdfb035e4
            Merge: 73b5d4c7 dcbf19fd
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:46:11 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
            Merge: b74587f0 1447b079
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:28:34 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:27:49 2023 +0200

                - hopefully fixed problem with reloading older projects

            commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 12:42:14 2023 +0200

                Ms 2022 08 18 yellow (#348)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
            Merge: b774ac60 d7b5e5c2
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 12:41:03 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 12:05:53 2023 +0200

                frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 14:20:00 2023 +0200

                - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 10:43:08 2023 +0200

                Ms 2022 08 18 yellow (#347)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

            commit 17e89cefe8264584ebe0fadc637a1fac542704ac
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 10:23:27 2023 +0200

                - can't go to squonk job execution page if the url is not available

            commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 09:11:52 2023 +0200

                Minor fixes before the release (#346)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

            commit c8b5f20dd521c7007f08531736541ca84b041a85
            Merge: 8d500638 2cd48e04
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 14:35:17 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8d50063887bc2f6335550f15fe69cc93b17be30e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 14:34:49 2023 +0200

                - new BE image

            commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
            Merge: 0fddd791 b20adee8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 13:00:20 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 12:09:36 2023 +0200

                Update package.json

                triggering the build action

            commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 10:44:24 2023 +0200

                - before the release fixes

            commit b10160928bff787161a140e4cffd8aa783a4c482
            Merge: f6699d10 9f5f2b7c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 31 09:38:39 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 31 09:37:22 2023 +0200

                - minor typo fix

            commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 14:00:10 2023 +0100

                Update package.json

                just to trigger build action

            commit 5a37013c71469f9433c36d956174b1efc1e698ab
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 12:43:27 2023 +0100

                Update package.json

                to trigger build action

            commit b54cdaa4ea816719128c07939a14a99152a8e990
            Merge: 5dfc38be d6d5216d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 11:36:29 2023 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 11:35:57 2023 +0100

                - updated build-dev.yaml

            commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 08:52:55 2023 +0100

                Update package.json

                trigger build action

            commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 08:46:51 2023 +0100

                Update package.json

                to trigger build action

            commit b20adee8140c7f46573eb5e7525e97427d23d4d4
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 17:29:15 2023 +0100

                Ms 2022 08 18 yellow (#345)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
            Merge: d777f117 4cb92f6c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 10:50:04 2023 +0100

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 10:17:34 2023 +0100

                - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            commit ae0cbdc8540aa440c776be3b84508c710a215d36
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 09:01:48 2023 +0100

                - fixed bugs found in staging

            commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 13:05:06 2023 +0100

                Ms 2022 08 18 yellow (#344)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

            commit bc13d845aa206aa7d8d151a8bb53f53335761084
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 10:38:18 2023 +0100

                Update package.json

                triggering build action

            commit 49d1ad57042d353f76c7368944601a8d64e44596
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 10:32:30 2023 +0100

                Update package.json

                to trigger build action

            commit fd0df1c021010f4f5e028090493464721b8b2600
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 09:11:44 2023 +0100

                - added message when access to squonk is denied

            commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 14:35:57 2023 +0100

                - fixed problem with id

            commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 14:18:47 2023 +0100

                - authorize user for viewing squonk job

            commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 12:58:15 2023 +0100

                - added more logs

            commit d97a512d75aa621be77ee69b547b21e1653386e1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 12:19:18 2023 +0100

                fixed problem with entries function

            commit 7e28e41d96e57998b979752d3651304bf36713c9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 12:13:08 2023 +0100

                - added debug logs

            commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 11:29:23 2023 +0100

                - implemented #890

            commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 18:50:08 2023 +0100

                - fixes because can't debug this locally

            commit 59779b6b80ec7e21af68b219a543a017aa837b14
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 18:29:05 2023 +0100

                - trying to fix a bug with inputs

            commit 76ccc089efc43589bb381ea6589567dce538aa8b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 18:12:34 2023 +0100

                - reworked show inputs in jobs table

            commit e862c726c81b0328cc9b7538d9820481b7d85cd8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 16:46:29 2023 +0100

                - added debug info

            commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 16:33:00 2023 +0100

                - added debug info

            commit c4b11af95a56786493e13735ac92b1b1f766af79
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 16:13:41 2023 +0100

                - added debug info

            commit 6adc86d4f95a362b38747e001f55bde2a104baff
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 15:53:49 2023 +0100

                - added debug info

            commit e42ed05162106109c927e80620d67b5af31b7ef1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 15:34:10 2023 +0100

                - added debug info

            commit 39034c54b97f4da301365c69d985640a66c75469
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 15:09:04 2023 +0100

                - added debug info

            commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 14:48:45 2023 +0100

                - added debug info

            commit 13a00cf2ba8f4ae13de4865096f9def349acd158
            Merge: 0a36ae5c d0317f60
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Tue Feb 21 20:43:31 2023 +0000

                Merge pull request #341 from m2ms/ms-2022-08-18-yellow

                Ms 2022 08 18 yellow release

            commit d0317f607def3b6e1a5651554b338161fce4f040
            Merge: 53164d21 8c4ca1d0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:58:48 2023 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 53164d21b23e7a918a772ced6292817b4306031e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:57:25 2023 +0100

                Squashed commit of the following:

                commit 19b3910d84f9707b8047524cfe44dfa1f8696644
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 20 13:33:18 2023 +0100

                    - new dev BE

                commit af427c71d9499c975e12b314202bdb0f0ec13826
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Feb 17 08:44:14 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 4cb19eb371b0147dfc51b704a36dba842543d311
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 16 09:09:27 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Feb 15 14:01:32 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 14 08:50:44 2023 +0100

                    - fixed direct links and direct download links

                commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 14:02:18 2023 +0100

                    - fixed job name

                commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 13:28:20 2023 +0100

                    - added fragmenstein-combine-multi-scoring.json

                commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 13:25:35 2023 +0100

                    - checkpoint

                commit b43373e1c228d9e46f4c831fc46269d614013e92
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 10:43:27 2023 +0100

                    - fixed problem where UI would crash if there was a problem during job file transfer of job launch

                commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 09:54:36 2023 +0100

                    - fixed bad project capture from url

                commit 7d588895cebd0e363aa5d62b36770499364aef06
                Merge: 11180a5c 4fc7f7bd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 8 09:27:51 2023 +0100

                    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                commit 11180a5c0142ea18624ae14ddaad16793fdcb435
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 8 09:26:31 2023 +0100

                    - prevent crash when there is a project associated with target which user is not authorized to see

                commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Feb 8 07:25:12 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 15:43:38 2023 +0100

                    Update package.json

                    just to trigger the build action

                commit d0d429c473307ce2bfa825ad9e556084082accd8
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 15:20:25 2023 +0100

                    Update package.json

                    just to trigger the build action

                commit fcf377b863abf9110e1c0ce752b29bce073349cf
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 14:51:17 2023 +0100

                    - fixed problem when job config windows closes on error

                commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
                Merge: 5a3d56bf 0f8e702a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 13:19:16 2023 +0100

                    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 13:18:30 2023 +0100

                    - now sending id of the project and not target_access_string

                commit 0f8e702a023e2f786c5ba46eab2205f158a75480
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 12:59:19 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 585076db67dc32b58083c184e1ca11a6dddc434b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 12:39:19 2023 +0100

                    - fixed problem when project pane was not showing up right after a project was created

                commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 12:08:23 2023 +0100

                    - fix for missing project pane

                commit ba0a1fe55bd53f719d31d795d71877d81366cac9
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 09:05:50 2023 +0100

                    - version for job execution - broken UI

                commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
                Merge: 51e97af1 a42cad71
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 1 13:58:27 2023 +0100

                    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 1 13:57:49 2023 +0100

                    - partial implementation of #1020

                commit a42cad7193b8c8f02c04378bba01f6f44114ec88
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Jan 26 08:34:01 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Jan 25 09:39:06 2023 +0100

                    Update package.json

                    just to trigger build action

                commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 15:10:11 2023 +0100

                    Update package.json

                    just to trigger the build action

                commit e8e5657cc5f7beecf5813040210605b6cf410cef
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 14:04:56 2023 +0100

                    Update package.json

                    just to trigger build

                commit 24dc912bfdae3bec9c52867f2d638754635cecbb
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 12:49:58 2023 +0100

                    - sensitive data moved to .env file

                commit a98c51751368104300a872f116cc22acc09cec44
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 12:49:06 2023 +0100

                    - added .env to gitignore

                commit 13b4bed082612315afc948192fe758fb42edf63d
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 12:47:56 2023 +0100

                    - mending an error

                commit 5b74eb4326389e11b923b560f6603586bfc3b87c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Jan 18 09:52:19 2023 +0100

                    - checkpoint

                commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 17 10:10:27 2023 +0100

                    - initial implementation #1020

            commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Jan 16 11:35:37 2023 +0100

                Update package.json

                just to trigger build action

            commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Jan 13 10:47:51 2023 +0100

                Update package.json

                just to trigger build action

            commit 0d6abaa08dc7a174d915d33e21a1667accd39423
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 12 10:18:23 2023 +0100

                Update package.json

                just to trigger build action

            commit d5905966cb9bf2994f93668911873108832d7578
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 11 11:02:25 2023 +0100

                - forgot to reset debug constants

            commit df7057032baa70df6451b7faf0a232fa75a1e55b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 11 08:05:23 2023 +0100

                - minor fix for upload_status

            commit 698d123634ded171f161c3bb9f27e4e1600730be
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 15:42:30 2023 +0100

                - minor fix for upload_status

            commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 15:26:03 2023 +0100

                - upload_failed now taken into the account

            commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 13:35:25 2023 +0100

                Update package.json

                - just to trigger build action

            commit e6fbd6d213418dfd9708e206da341e8e37e776c3
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 11:54:17 2023 +0100

                Update package.json

                just to trigger build action

            commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 23 13:01:20 2022 +0100

                - updated README.md

            commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
            Merge: 6a7a0dda 782b84b5
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Tue Dec 20 18:11:19 2022 +0000

                Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

                Animate to new orientation matrix first

            commit 5504bd464e1d699833f258b994e344cb339cb234
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:06:06 2022 +0100

                Squashed commit of the following:

                commit cec398dcf0a14f7e433b2baec849e29001358839
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Dec 20 08:00:30 2022 +0100

                    -

                commit 885f08e18f7983723a0944bd90cec646c869ee89
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Dec 16 13:18:38 2022 +0100

                    - bug fix in progress for #970

                commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 15 16:30:41 2022 +0100

                    - now user can insert list of strings as an input for a job

                commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:07:28 2022 +0100

                    - initial implementation of #970

                commit 89010ea549ade47427b6454c3b92a37dff0c449b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:26:35 2022 +0100

                    - #1001

            commit 6fa2432f7226be0d54f7ce608719c0d59863d367
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:09:59 2022 +0100

                Squashed commit of the following:

                commit 553235691beedd110072226ff20b6b49a6aad1ee
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:06:41 2022 +0100

                    - orient first then remove/add stuff

            commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
            Merge: eaa4ccbd f07779ce
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:08:49 2022 +0100

                Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

            commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:08:30 2022 +0100

                Squashed commit of the following:

                commit 553235691beedd110072226ff20b6b49a6aad1ee
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:06:41 2022 +0100

                    - orient first then remove/add stuff

            commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
            Merge: 356e625e f07779ce
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Fri Dec 16 12:44:21 2022 +0000

                Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

                Ms 2022 08 18 yellow wo 970

            commit f07779ce30667465ea1aba424085e8978827641a
            Merge: 57336b82 dcc2c882
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:24:09 2022 +0100

                Merge branch 'master' into ms-2022-08-18-yellow-wo-970

            commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:32:57 2022 +0100

                Squashed commit of the following:

                commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 15 16:30:41 2022 +0100

                    - now user can insert list of strings as an input for a job

                commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:07:28 2022 +0100

                    - initial implementation of #970

                commit 89010ea549ade47427b6454c3b92a37dff0c449b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:26:35 2022 +0100

                    - #1001

            commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
            Merge: 8ac386cd 57336b82
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:28:30 2022 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:27:11 2022 +0100

                Squashed commit of the following:

                commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:07:28 2022 +0100

                    - initial implementation of #970

                commit 89010ea549ade47427b6454c3b92a37dff0c449b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:26:35 2022 +0100

                    - #1001

            commit 57336b825cb95aecb3dfff78ab571bb85e906073
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Dec 8 11:41:44 2022 +0100

                Update package.json

                just to trigger action

            commit c6c3ed0b16414d528684d63befca6a01634683d0
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 11:57:33 2022 +0100

                Update package.json

                just to trigger action

            commit 614b01c80882557160777ba96abc92c2d328112e
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 09:38:38 2022 +0100

                Update package.json

                just to trigger action

            commit c0d2b3858d074b33303eef48e42f11e7eefac474
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 08:39:23 2022 +0100

                Update package.json

                just to trigger action

            commit bbf6f91e8498586d666204c3493405c4ca4e7268
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 08:31:30 2022 +0100

                Update package.json

                just to trigger rebuild

            commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:28:17 2022 +0100

                Squashed commit of the following:

                commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:14:43 2022 +0100

                    - #1001

            commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:10:59 2022 +0100

                Squashed commit of the following:

                commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 1 09:08:03 2022 +0100

                    - implemented #1012

            commit f8eb4067e0ece9d170e3405bebe21a689927442c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:24:56 2022 +0100

                Squashed commit of the following:

                commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Nov 29 10:22:31 2022 +0100

                    - fixed #1013

                commit db173bcdd76574055d5132ec3cd34012a727656d
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 14:39:16 2022 +0100

                    Squashed commit of the following:

                    commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                    Merge: 8712fddb 87870aa1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:40:54 2022 +0100

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:39:15 2022 +0100

                        Squashed commit of the following:

                        commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
         …
boriskovar-m2ms added a commit that referenced this issue Aug 18, 2023
commit ca88200ded3002c782589a8dccbc08a7156d3f54
Merge: b6c21b9f 5262a81c
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Tue Aug 15 12:56:46 2023 +0200

    Merge branch 'staging' into stagingcandidate

commit b6c21b9f74a0281bcf9883a7da07165bbbdc5695
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 15 12:32:55 2023 +0200

    Squashed commit of the following:

    commit 60528709e830d424c07d290a7daf65cfcf3d9b2c
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 12:31:31 2023 +0200

        - implemented #1129

commit 86a1a7c9e26d899d34af4f6cdb85ceb19f207d0d
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 15 09:49:39 2023 +0200

    Squashed commit of the following:

    commit 0550be26180579a58c85c520b0930c44f4999011
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 08:46:33 2023 +0200

        - fixed #1092

commit fcf418da068289847e2d7da1d72a19570a8832b0
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Aug 11 09:19:38 2023 +0200

    Squashed commit of the following:

    commit 5adc61adf29db66e7e09fd2d663c18d064305c33
    Merge: a8c90f24 1aef079a
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Thu Aug 10 15:31:40 2023 +0200

        Merge branch '#1118' of https://github.com/m2ms/fragalysis-frontend into #1118

    commit a8c90f245cf29df1cfee1b7053454cb7d0c0ad4a
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Thu Aug 10 15:31:35 2023 +0200

    commit 1aef079a1728061be8c56f41967bf60666c79a17
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Aug 10 08:25:48 2023 +0200

        Update package.json

        triggering build action

    commit 594ac1970c7099ecfb94cecc3707a6cc9ef2894f
    Merge: 5564d2ce de09cdc6
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Wed Aug 9 11:59:25 2023 +0200

        Merge branch '#1106' into #1118

    commit 5564d2ceaaea797542514f1a9fdfd8901591fb2b
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Wed Aug 9 11:26:34 2023 +0200

    commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
    Merge: 4caeef7b 8b73ee22
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 8 11:38:09 2023 +0200

        Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

    commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 8 11:37:40 2023 +0200

        - updated table styling

    commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Mon Aug 7 13:24:08 2023 +0200

        Update package.json

        just to trigger build action

    commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Aug 7 12:55:44 2023 +0200

        - table is now autosized

    commit e867e77c40598a12fa10ca6ab526880274936752
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Mon Aug 7 09:03:11 2023 +0200

commit 5262a81ca9a1b9c940e60c736924f88cbad4a8aa
Merge: d9821b23 c74c7ae1
Author: Max Winokan <36866506+mwinokan@users.noreply.github.com>
Date:   Thu Aug 10 16:22:35 2023 +0100

    Merge pull request #364 from xchem/m2ms-1046

    Streamlined CI builds (less noisy)

commit d9821b2329e98647eab02838114c22b993d10ebb
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Aug 10 15:04:04 2023 +0200

    Fixed problem with new job (#365)

    * Squashed commit of the following:

    commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
    Merge: c924ce24 bc13c611
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 2 16:35:15 2023 +0200

        Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

    commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 2 16:34:40 2023 +0200

        - fixed overflow for target list

    commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
    Merge: 7b88603b 74ffba6f
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Wed Aug 2 16:03:35 2023 +0200

        Merge branch 'staging' into RedRelease20230525

    commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Tue Aug 1 15:29:56 2023 +0200

    commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Tue Aug 1 08:41:52 2023 +0200

    commit 11df780229077611f93ab766c508c485d4bcb7b3
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Tue Aug 1 08:37:10 2023 +0200

    commit 1252aa88178d9b745e32a5c20c4ca353049545f1
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 15:40:06 2023 +0200

        - fixed overflow

    commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 14:51:19 2023 +0200

        - fixed problem from #1112 where page-ination controls were not visible

    commit 62227fbd35fb110dc9dec60342beb66ef2582762
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 13:51:34 2023 +0200

        - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

    commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 13:33:30 2023 +0200

        - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

    commit f1d0db5f2161a14201b4e447317eeea640f80f06
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 11:01:21 2023 +0200

        - fixed #1117

    commit 1038f80e842e5df9490554d5244427402dd7d6b7
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Jul 31 10:11:26 2023 +0200

        - fixed issue #1113

    commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Jul 27 16:18:53 2023 +0200

        Redrelease20230525-firstBatch (#354)

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - added debug info

        * - reworked show inputs in jobs table

        * - trying to fix a bug with inputs

        * - fixes because can't debug this locally

        * - implemented #890

        * - added debug logs

        * fixed problem with entries function

        * - added more logs

        * - authorize user for viewing squonk job

        * - fixed problem with id

        * - added message when access to squonk is denied

        * Update package.json

        to trigger build action

        * Update package.json

        triggering build action

        * - fixed bugs found in staging

        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        * Update package.json

        to trigger build action

        * Update package.json

        trigger build action

        * - updated build-dev.yaml

        * Update package.json

        to trigger build action

        * Update package.json

        just to trigger build action

        * - minor typo fix

        * - before the release fixes

        * Update package.json

        triggering the build action

        * - new BE image

        * - can't go to squonk job execution page if the url is not available

        * - Add status to the job table
        - Revert the disabled buttons if I can't run the job for the target
        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        * frontend fixes before green release:
        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        * - hopefully fixed problem with reloading older projects

        * - fixed bad merge from staging

        * - schema expansion test

        * Update package.json

        just to trigger build action

        * Update package.json

        to trigger build action

        * - add button to job table to copy snapshot associated with the job run

        * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        * added searchString to action and TimeLine

        * #576 restored searchString from snapshot for RHS

        * #576 edited time for search response

        * #576 restore search string for hit navigator

        * #576 Restore search for project history

        * #978 added new button and conditions for showing

        * #978 change modal background and position

        * #978 setted modal window position under buttons

        * #978 fixed onClick for close modal

        * #576 edited tag detail added toggle union/intersec

        * #576 added buttons to Tag Detail

        * #978 added new column and sort by columns

        * #978 edited sort and filter project list table

        * #978 edited filter and search data

        * #576 edit width count

        * Update package.json

        - just to trigger build action

        * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

        * Update package.json

        - just to trigger build action

        * #978 filter for project list and other fix

        * #576 edited LHS height and Tag detail colors

        * #576 added "Select displayed button"

        * #978 edited save change for NGL

        * - semicolons?

        * -merge

        * Squashed commit of the following:

        commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jul 4 08:00:12 2023 +0200

            - fixed #1073

        commit ae8406cfdb405dce01d075de39754d2acd6cc55a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jun 7 08:26:20 2023 +0200

            Squashed commit of the following:

            commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
            Merge: d266f99b 949f4734
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Apr 26 11:17:58 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 26 10:50:48 2023 +0200

                - fixed problem for 'add button to job table to copy snapshot associated with the job run'

            commit 62784948247ed7f0521b10418b1b8a271e7062f0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 26 09:43:11 2023 +0200

                - add button to job table to copy snapshot associated with the job run

            commit 949f47340369a671516a7c6317f8f7e35ba86984
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 14:47:39 2023 +0200

                Ms 2022 08 18 yellow (#351)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

                * - fixed bad merge from staging

                * - schema expansion test

                * Update package.json

                just to trigger build action

                * Update package.json

                to trigger build action

            commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
            Merge: eaadb729 8d437c3f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 14:35:37 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit eaadb729f90441417c899cf4869e26a1b789bb42
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 12:39:23 2023 +0200

                Update package.json

                to trigger build action

            commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 11:26:05 2023 +0200

                Update package.json

                just to trigger build action

            commit 09007706e2ec26c6006d7d19a756129d093ac306
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Apr 24 09:36:38 2023 +0200

                - schema expansion test

            commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 17:00:05 2023 +0200

                Ms 2022 08 18 yellow (#350)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

                * - fixed bad merge from staging

            commit 7790dfbc261a302018423ce1a506eb33eb48d683
            Merge: bf42cc20 45438127
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 16:57:36 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit bf42cc20b514c4b3708b606557cb576324f02a20
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 16:57:18 2023 +0200

                - fixed bad merge from staging

            commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:47:17 2023 +0200

                Ms 2022 08 18 yellow (#349)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

            commit 45438127c520d201677dd1b5c1fd876cdfb035e4
            Merge: 73b5d4c7 dcbf19fd
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:46:11 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
            Merge: b74587f0 1447b079
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:28:34 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 15:27:49 2023 +0200

                - hopefully fixed problem with reloading older projects

            commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 12:42:14 2023 +0200

                Ms 2022 08 18 yellow (#348)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
            Merge: b774ac60 d7b5e5c2
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 12:41:03 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Apr 11 12:05:53 2023 +0200

                frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 14:20:00 2023 +0200

                - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 10:43:08 2023 +0200

                Ms 2022 08 18 yellow (#347)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

            commit 17e89cefe8264584ebe0fadc637a1fac542704ac
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 10:23:27 2023 +0200

                - can't go to squonk job execution page if the url is not available

            commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Apr 6 09:11:52 2023 +0200

                Minor fixes before the release (#346)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

            commit c8b5f20dd521c7007f08531736541ca84b041a85
            Merge: 8d500638 2cd48e04
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 14:35:17 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8d50063887bc2f6335550f15fe69cc93b17be30e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 14:34:49 2023 +0200

                - new BE image

            commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
            Merge: 0fddd791 b20adee8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 13:00:20 2023 +0200

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 12:09:36 2023 +0200

                Update package.json

                triggering the build action

            commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Apr 5 10:44:24 2023 +0200

                - before the release fixes

            commit b10160928bff787161a140e4cffd8aa783a4c482
            Merge: f6699d10 9f5f2b7c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 31 09:38:39 2023 +0200

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 31 09:37:22 2023 +0200

                - minor typo fix

            commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 14:00:10 2023 +0100

                Update package.json

                just to trigger build action

            commit 5a37013c71469f9433c36d956174b1efc1e698ab
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 12:43:27 2023 +0100

                Update package.json

                to trigger build action

            commit b54cdaa4ea816719128c07939a14a99152a8e990
            Merge: 5dfc38be d6d5216d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 11:36:29 2023 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 11:35:57 2023 +0100

                - updated build-dev.yaml

            commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 08:52:55 2023 +0100

                Update package.json

                trigger build action

            commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Mar 24 08:46:51 2023 +0100

                Update package.json

                to trigger build action

            commit b20adee8140c7f46573eb5e7525e97427d23d4d4
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 17:29:15 2023 +0100

                Ms 2022 08 18 yellow (#345)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
            Merge: d777f117 4cb92f6c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 10:50:04 2023 +0100

                Merge branch 'staging' into ms-2022-08-18-yellow

            commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 10:17:34 2023 +0100

                - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            commit ae0cbdc8540aa440c776be3b84508c710a215d36
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Mar 16 09:01:48 2023 +0100

                - fixed bugs found in staging

            commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 13:05:06 2023 +0100

                Ms 2022 08 18 yellow (#344)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

            commit bc13d845aa206aa7d8d151a8bb53f53335761084
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 10:38:18 2023 +0100

                Update package.json

                triggering build action

            commit 49d1ad57042d353f76c7368944601a8d64e44596
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 10:32:30 2023 +0100

                Update package.json

                to trigger build action

            commit fd0df1c021010f4f5e028090493464721b8b2600
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Mar 9 09:11:44 2023 +0100

                - added message when access to squonk is denied

            commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 14:35:57 2023 +0100

                - fixed problem with id

            commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 14:18:47 2023 +0100

                - authorize user for viewing squonk job

            commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 12:58:15 2023 +0100

                - added more logs

            commit d97a512d75aa621be77ee69b547b21e1653386e1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 12:19:18 2023 +0100

                fixed problem with entries function

            commit 7e28e41d96e57998b979752d3651304bf36713c9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 12:13:08 2023 +0100

                - added debug logs

            commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Mar 8 11:29:23 2023 +0100

                - implemented #890

            commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 18:50:08 2023 +0100

                - fixes because can't debug this locally

            commit 59779b6b80ec7e21af68b219a543a017aa837b14
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 18:29:05 2023 +0100

                - trying to fix a bug with inputs

            commit 76ccc089efc43589bb381ea6589567dce538aa8b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 18:12:34 2023 +0100

                - reworked show inputs in jobs table

            commit e862c726c81b0328cc9b7538d9820481b7d85cd8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 16:46:29 2023 +0100

                - added debug info

            commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 16:33:00 2023 +0100

                - added debug info

            commit c4b11af95a56786493e13735ac92b1b1f766af79
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 16:13:41 2023 +0100

                - added debug info

            commit 6adc86d4f95a362b38747e001f55bde2a104baff
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 15:53:49 2023 +0100

                - added debug info

            commit e42ed05162106109c927e80620d67b5af31b7ef1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 15:34:10 2023 +0100

                - added debug info

            commit 39034c54b97f4da301365c69d985640a66c75469
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 15:09:04 2023 +0100

                - added debug info

            commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Sun Mar 5 14:48:45 2023 +0100

                - added debug info

            commit 13a00cf2ba8f4ae13de4865096f9def349acd158
            Merge: 0a36ae5c d0317f60
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Tue Feb 21 20:43:31 2023 +0000

                Merge pull request #341 from m2ms/ms-2022-08-18-yellow

                Ms 2022 08 18 yellow release

            commit d0317f607def3b6e1a5651554b338161fce4f040
            Merge: 53164d21 8c4ca1d0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:58:48 2023 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 53164d21b23e7a918a772ced6292817b4306031e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:57:25 2023 +0100

                Squashed commit of the following:

                commit 19b3910d84f9707b8047524cfe44dfa1f8696644
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 20 13:33:18 2023 +0100

                    - new dev BE

                commit af427c71d9499c975e12b314202bdb0f0ec13826
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Feb 17 08:44:14 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 4cb19eb371b0147dfc51b704a36dba842543d311
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 16 09:09:27 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Feb 15 14:01:32 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Feb 14 08:50:44 2023 +0100

                    - fixed direct links and direct download links

                commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 14:02:18 2023 +0100

                    - fixed job name

                commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 13:28:20 2023 +0100

                    - added fragmenstein-combine-multi-scoring.json

                commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 13:25:35 2023 +0100

                    - checkpoint

                commit b43373e1c228d9e46f4c831fc46269d614013e92
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 10:43:27 2023 +0100

                    - fixed problem where UI would crash if there was a problem during job file transfer of job launch

                commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 9 09:54:36 2023 +0100

                    - fixed bad project capture from url

                commit 7d588895cebd0e363aa5d62b36770499364aef06
                Merge: 11180a5c 4fc7f7bd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 8 09:27:51 2023 +0100

                    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                commit 11180a5c0142ea18624ae14ddaad16793fdcb435
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 8 09:26:31 2023 +0100

                    - prevent crash when there is a project associated with target which user is not authorized to see

                commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Feb 8 07:25:12 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 15:43:38 2023 +0100

                    Update package.json

                    just to trigger the build action

                commit d0d429c473307ce2bfa825ad9e556084082accd8
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 15:20:25 2023 +0100

                    Update package.json

                    just to trigger the build action

                commit fcf377b863abf9110e1c0ce752b29bce073349cf
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 14:51:17 2023 +0100

                    - fixed problem when job config windows closes on error

                commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
                Merge: 5a3d56bf 0f8e702a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 13:19:16 2023 +0100

                    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 13:18:30 2023 +0100

                    - now sending id of the project and not target_access_string

                commit 0f8e702a023e2f786c5ba46eab2205f158a75480
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 12:59:19 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 585076db67dc32b58083c184e1ca11a6dddc434b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 12:39:19 2023 +0100

                    - fixed problem when project pane was not showing up right after a project was created

                commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 12:08:23 2023 +0100

                    - fix for missing project pane

                commit ba0a1fe55bd53f719d31d795d71877d81366cac9
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Feb 2 09:05:50 2023 +0100

                    - version for job execution - broken UI

                commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
                Merge: 51e97af1 a42cad71
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 1 13:58:27 2023 +0100

                    Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Feb 1 13:57:49 2023 +0100

                    - partial implementation of #1020

                commit a42cad7193b8c8f02c04378bba01f6f44114ec88
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Jan 26 08:34:01 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Jan 25 09:39:06 2023 +0100

                    Update package.json

                    just to trigger build action

                commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 15:10:11 2023 +0100

                    Update package.json

                    just to trigger the build action

                commit e8e5657cc5f7beecf5813040210605b6cf410cef
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 14:04:56 2023 +0100

                    Update package.json

                    just to trigger build

                commit 24dc912bfdae3bec9c52867f2d638754635cecbb
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 12:49:58 2023 +0100

                    - sensitive data moved to .env file

                commit a98c51751368104300a872f116cc22acc09cec44
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 12:49:06 2023 +0100

                    - added .env to gitignore

                commit 13b4bed082612315afc948192fe758fb42edf63d
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 24 12:47:56 2023 +0100

                    - mending an error

                commit 5b74eb4326389e11b923b560f6603586bfc3b87c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Jan 18 09:52:19 2023 +0100

                    - checkpoint

                commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 17 10:10:27 2023 +0100

                    - initial implementation #1020

            commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Jan 16 11:35:37 2023 +0100

                Update package.json

                just to trigger build action

            commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Jan 13 10:47:51 2023 +0100

                Update package.json

                just to trigger build action

            commit 0d6abaa08dc7a174d915d33e21a1667accd39423
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 12 10:18:23 2023 +0100

                Update package.json

                just to trigger build action

            commit d5905966cb9bf2994f93668911873108832d7578
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 11 11:02:25 2023 +0100

                - forgot to reset debug constants

            commit df7057032baa70df6451b7faf0a232fa75a1e55b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 11 08:05:23 2023 +0100

                - minor fix for upload_status

            commit 698d123634ded171f161c3bb9f27e4e1600730be
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 15:42:30 2023 +0100

                - minor fix for upload_status

            commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 15:26:03 2023 +0100

                - upload_failed now taken into the account

            commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 13:35:25 2023 +0100

                Update package.json

                - just to trigger build action

            commit e6fbd6d213418dfd9708e206da341e8e37e776c3
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 10 11:54:17 2023 +0100

                Update package.json

                just to trigger build action

            commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 23 13:01:20 2022 +0100

                - updated README.md

            commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
            Merge: 6a7a0dda 782b84b5
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Tue Dec 20 18:11:19 2022 +0000

                Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

                Animate to new orientation matrix first

            commit 5504bd464e1d699833f258b994e344cb339cb234
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:06:06 2022 +0100

                Squashed commit of the following:

                commit cec398dcf0a14f7e433b2baec849e29001358839
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Dec 20 08:00:30 2022 +0100

                    -

                commit 885f08e18f7983723a0944bd90cec646c869ee89
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Dec 16 13:18:38 2022 +0100

                    - bug fix in progress for #970

                commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 15 16:30:41 2022 +0100

                    - now user can insert list of strings as an input for a job

                commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:07:28 2022 +0100

                    - initial implementation of #970

                commit 89010ea549ade47427b6454c3b92a37dff0c449b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:26:35 2022 +0100

                    - #1001

            commit 6fa2432f7226be0d54f7ce608719c0d59863d367
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:09:59 2022 +0100

                Squashed commit of the following:

                commit 553235691beedd110072226ff20b6b49a6aad1ee
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:06:41 2022 +0100

                    - orient first then remove/add stuff

            commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
            Merge: eaa4ccbd f07779ce
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:08:49 2022 +0100

                Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

            commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:08:30 2022 +0100

                Squashed commit of the following:

                commit 553235691beedd110072226ff20b6b49a6aad1ee
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:06:41 2022 +0100

                    - orient first then remove/add stuff

            commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
            Merge: 356e625e f07779ce
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Fri Dec 16 12:44:21 2022 +0000

                Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

                Ms 2022 08 18 yellow wo 970

            commit f07779ce30667465ea1aba424085e8978827641a
            Merge: 57336b82 dcc2c882
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:24:09 2022 +0100

                Merge branch 'master' into ms-2022-08-18-yellow-wo-970

            commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:32:57 2022 +0100

                Squashed commit of the following:

                commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 15 16:30:41 2022 +0100

                    - now user can insert list of strings as an input for a job

                commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:07:28 2022 +0100

                    - initial implementation of #970

                commit 89010ea549ade47427b6454c3b92a37dff0c449b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:26:35 2022 +0100

                    - #1001

            commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
            Merge: 8ac386cd 57336b82
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:28:30 2022 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:27:11 2022 +0100

                Squashed commit of the following:

                commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:07:28 2022 +0100

                    - initial implementation of #970

                commit 89010ea549ade47427b6454c3b92a37dff0c449b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:26:35 2022 +0100

                    - #1001

            commit 57336b825cb95aecb3dfff78ab571bb85e906073
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Dec 8 11:41:44 2022 +0100

                Update package.json

                just to trigger action

            commit c6c3ed0b16414d528684d63befca6a01634683d0
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 11:57:33 2022 +0100

                Update package.json

                just to trigger action

            commit 614b01c80882557160777ba96abc92c2d328112e
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 09:38:38 2022 +0100

                Update package.json

                just to trigger action

            commit c0d2b3858d074b33303eef48e42f11e7eefac474
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 08:39:23 2022 +0100

                Update package.json

                just to trigger action

            commit bbf6f91e8498586d666204c3493405c4ca4e7268
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Dec 7 08:31:30 2022 +0100

                Update package.json

                just to trigger rebuild

            commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:28:17 2022 +0100

                Squashed commit of the following:

                commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:14:43 2022 +0100

                    - #1001

            commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:10:59 2022 +0100

                Squashed commit of the following:

                commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 1 09:08:03 2022 +0100

                    - implemented #1012

            commit f8eb4067e0ece9d170e3405bebe21a689927442c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:24:56 2022 +0100

                Squashed commit of the following:

                commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Nov 29 10:22:31 2022 +0100

                    - fixed #1013

                commit db173bcdd76574055d5132ec3cd34012a727656d
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 14:39:16 2022 +0100

                    Squashed commit of the following:

                    commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                    Merge: 8712fddb 87870aa1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:40:54 2022 +0100

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:39:15 2022 +0100

                        Squashed commit of the following:

                        commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Nov 28 13:30:45 2022 +0100

                            - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                        commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Nov 28 08:16:31 2022 +0100

                            - #876 seems to be done

                    commit 87870aa192d10344ae7eb384618ef137986862d0
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 09:36:12 2022 +0100

                        Update package.json

                        just to trigger build action

            commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
            Merge: 8712fddb 87870aa1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:40:54 2022 +0100

                Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

            commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:39:15 2022 +0100

                Squashed commit of the following:

                commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:30:45 2022 +0100

                    - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 08:16:31 2022 +0100

                    - #876 seems to be done

            commit 87870aa192d10344ae7eb384618ef137986862d0
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 09:36:12 2022 +0100

                Update package.json

                just to trigger build action

            commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 09:08:21 2022 +0100

                Squashed commit of the following:

                commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 08:16:31 2022 +0100

                    - #876 seems to be done

            commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
            Merge: 0530324b 7b7cbe99
            Author: rsanchezgarc <rubensanchezgarc@gmail.com>
            Date:   Mon Nov 14 09:59:45 2022 +0000

                Merge pull request #329 from m2ms/#977-ngl

                Fast switching between snapshots

            commit 7b7cbe99952000f6c550727e082cb920cafa144c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 8 10:04:33 2022 +0100

                - #977 - fixed issue with ngl settings were not saved and restored

            commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 7 10:14:18 2022 +0100

                Squashed commit of the following:

                commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Nov 3 08:01:05 2022 +0100

                    - fixed ngl view was not tracked

            commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
            Merge: 931a5aea 5746062a
            Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
            Date:   Thu Oct 27 15:51:39 2022 +0100

                Merge pull request #325 from xchem/production

                Action doc tweaks

            commit 5746062aacabb5201feefed8ea09e3e34066a175
            Merge: b0e75d17 dc2ff23d
            Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
            Date:   Thu Oct 27 15:50:50 2022 +0100

                Merge pull request #324 from alanbchristie/production

                Action doc tweaks

            commit dc2ff23d773157c74f864931e06ccb0fd21cf335
            Author: Alan Christie <alan.christie@matildapeak.com>
            Date:   Thu Oct 27 15:48:48 2022 +0100

                Add doc for production workflow

            commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
            Author: Alan Christie <alan.christie@matildapeak.com>
            Date:   Thu Oct 27 15:35:27 2022 +0100

                Tweak action docs

            commit 931a5aea583997a80bab66d8099f743529f8d98f
            Merge: cb4246e7 b0e75d17
            Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
            Date:   Thu Oct 27 12:51:21 2022 +0100

                Merge pull request #323 from xchem/production

                P…
boriskovar-m2ms added a commit that referenced this issue Aug 24, 2023
commit 0a899872335a20b3fdef14ec4c0fc9acafe11c2e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 12:51:34 2023 +0200

    - red pen and autoselect text

commit 0be7970f6a8a149f57f1c4932042dbc9b0f0095f
Merge: 72e182cf a9f515d3
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 10:31:28 2023 +0200

    Merge branch '#1107' of https://github.com/m2ms/fragalysis-frontend into #1107

commit 72e182cfe60b4dfec95b4a3a146386f64ec5fb8b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 09:39:32 2023 +0200

    - #1107 - changed looks of the color filter

commit edda836088f5dc53c3ae71d551051aaa13f6cad5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 10:23:40 2023 +0200

    - new arrows

commit a9f515d3a06f77e3a2ff0c40a6fc4b179c2475cc
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 09:39:32 2023 +0200

    - #1107 - changed looks of the color filter

commit b1d0b1df0f7e5c614dddab2f66df75cb87250561
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 23 12:28:35 2023 +0200

    - #1109 - additional fixes for how inspirations dialog is displayed and how it moves using the arrows

commit 1556345036b541cc2bf586e72a021a8697a16c2b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 22 15:12:17 2023 +0200

    - additional fixes

commit 7351481a29275ac4f2b634464e8157b7185a0392
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 22 14:44:39 2023 +0200

    - additional fixes

commit 1edbaa305ac8f6bcf56d0530127a20f75f3c9b61
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 22 13:57:05 2023 +0200

    - fixed scrolling with local arrows

commit 9d1156a1690cd827ce6213ea850d89848eb0d1ec
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 22 13:32:48 2023 +0200

    - resolved autoscroll problems

commit 1d10b21882a9704b34a80286507460de26e12e45
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Tue Aug 22 10:02:37 2023 +0200

    - #1109 - fixed selected compounds list so now it works and doesn't crash iteration when there are also compounds from expansion vectors

commit 5bd9d18d83607257b7689c70e8c69fcaa5d4a36b
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Aug 21 15:34:19 2023 +0200

    - rough #1109 implementation should be done

commit 890c89a888209c9085d04766400fd1662d82a717
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Aug 21 09:06:12 2023 +0200

    - initial commit

commit 6cd22c49f03f2edf1df7dd161ac296b9d89a8c1d
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Aug 18 08:57:06 2023 +0200

    Squashed commit of the following:

    commit ca88200ded3002c782589a8dccbc08a7156d3f54
    Merge: b6c21b9f 5262a81c
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 12:56:46 2023 +0200

        Merge branch 'staging' into stagingcandidate

    commit b6c21b9f74a0281bcf9883a7da07165bbbdc5695
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 12:32:55 2023 +0200

        Squashed commit of the following:

        commit 60528709e830d424c07d290a7daf65cfcf3d9b2c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 12:31:31 2023 +0200

            - implemented #1129

    commit 86a1a7c9e26d899d34af4f6cdb85ceb19f207d0d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 15 09:49:39 2023 +0200

        Squashed commit of the following:

        commit 0550be26180579a58c85c520b0930c44f4999011
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 08:46:33 2023 +0200

            - fixed #1092

    commit fcf418da068289847e2d7da1d72a19570a8832b0
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Aug 11 09:19:38 2023 +0200

        Squashed commit of the following:

        commit 5adc61adf29db66e7e09fd2d663c18d064305c33
        Merge: a8c90f24 1aef079a
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Thu Aug 10 15:31:40 2023 +0200

            Merge branch '#1118' of https://github.com/m2ms/fragalysis-frontend into #1118

        commit a8c90f245cf29df1cfee1b7053454cb7d0c0ad4a
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Thu Aug 10 15:31:35 2023 +0200

        commit 1aef079a1728061be8c56f41967bf60666c79a17
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Aug 10 08:25:48 2023 +0200

            Update package.json

            triggering build action

        commit 594ac1970c7099ecfb94cecc3707a6cc9ef2894f
        Merge: 5564d2ce de09cdc6
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Wed Aug 9 11:59:25 2023 +0200

            Merge branch '#1106' into #1118

        commit 5564d2ceaaea797542514f1a9fdfd8901591fb2b
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Wed Aug 9 11:26:34 2023 +0200

        commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
        Merge: 4caeef7b 8b73ee22
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 8 11:38:09 2023 +0200

            Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

        commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 8 11:37:40 2023 +0200

            - updated table styling

        commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Aug 7 13:24:08 2023 +0200

            Update package.json

            just to trigger build action

        commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Aug 7 12:55:44 2023 +0200

            - table is now autosized

        commit e867e77c40598a12fa10ca6ab526880274936752
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Mon Aug 7 09:03:11 2023 +0200

    commit 5262a81ca9a1b9c940e60c736924f88cbad4a8aa
    Merge: d9821b23 c74c7ae1
    Author: Max Winokan <36866506+mwinokan@users.noreply.github.com>
    Date:   Thu Aug 10 16:22:35 2023 +0100

        Merge pull request #364 from xchem/m2ms-1046

        Streamlined CI builds (less noisy)

    commit d9821b2329e98647eab02838114c22b993d10ebb
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Aug 10 15:04:04 2023 +0200

        Fixed problem with new job (#365)

        * Squashed commit of the following:

        commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
        Merge: c924ce24 bc13c611
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 2 16:35:15 2023 +0200

            Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

        commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 2 16:34:40 2023 +0200

            - fixed overflow for target list

        commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
        Merge: 7b88603b 74ffba6f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Aug 2 16:03:35 2023 +0200

            Merge branch 'staging' into RedRelease20230525

        commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Tue Aug 1 15:29:56 2023 +0200

        commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Tue Aug 1 08:41:52 2023 +0200

        commit 11df780229077611f93ab766c508c485d4bcb7b3
        Author: RobertMatuska <robert.matuska@m2ms.sk>
        Date:   Tue Aug 1 08:37:10 2023 +0200

        commit 1252aa88178d9b745e32a5c20c4ca353049545f1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jul 31 15:40:06 2023 +0200

            - fixed overflow

        commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jul 31 14:51:19 2023 +0200

            - fixed problem from #1112 where page-ination controls were not visible

        commit 62227fbd35fb110dc9dec60342beb66ef2582762
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jul 31 13:51:34 2023 +0200

            - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

        commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jul 31 13:33:30 2023 +0200

            - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

        commit f1d0db5f2161a14201b4e447317eeea640f80f06
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jul 31 11:01:21 2023 +0200

            - fixed #1117

        commit 1038f80e842e5df9490554d5244427402dd7d6b7
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Jul 31 10:11:26 2023 +0200

            - fixed issue #1113

        commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jul 27 16:18:53 2023 +0200

            Redrelease20230525-firstBatch (#354)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

            * - add button to job table to copy snapshot associated with the job run

            * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

            * added searchString to action and TimeLine

            * #576 restored searchString from snapshot for RHS

            * #576 edited time for search response

            * #576 restore search string for hit navigator

            * #576 Restore search for project history

            * #978 added new button and conditions for showing

            * #978 change modal background and position

            * #978 setted modal window position under buttons

            * #978 fixed onClick for close modal

            * #576 edited tag detail added toggle union/intersec

            * #576 added buttons to Tag Detail

            * #978 added new column and sort by columns

            * #978 edited sort and filter project list table

            * #978 edited filter and search data

            * #576 edit width count

            * Update package.json

            - just to trigger build action

            * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

            * Update package.json

            - just to trigger build action

            * #978 filter for project list and other fix

            * #576 edited LHS height and Tag detail colors

            * #576 added "Select displayed button"

            * #978 edited save change for NGL

            * - semicolons?

            * -merge

            * Squashed commit of the following:

            commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jul 4 08:00:12 2023 +0200

                - fixed #1073

            commit ae8406cfdb405dce01d075de39754d2acd6cc55a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jun 7 08:26:20 2023 +0200

                Squashed commit of the following:

                commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
                Merge: d266f99b 949f4734
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Apr 26 11:17:58 2023 +0200

                    Merge branch 'staging' into ms-2022-08-18-yellow

                commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Apr 26 10:50:48 2023 +0200

                    - fixed problem for 'add button to job table to copy snapshot associated with the job run'

                commit 62784948247ed7f0521b10418b1b8a271e7062f0
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Apr 26 09:43:11 2023 +0200

                    - add button to job table to copy snapshot associated with the job run

                commit 949f47340369a671516a7c6317f8f7e35ba86984
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Apr 24 14:47:39 2023 +0200

                    Ms 2022 08 18 yellow (#351)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                    * - can't go to squonk job execution page if the url is not available

                    * - Add status to the job table
                    - Revert the disabled buttons if I can't run the job for the target
                    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                    * frontend fixes before green release:
                    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                    * - hopefully fixed problem with reloading older projects

                    * - fixed bad merge from staging

                    * - schema expansion test

                    * Update package.json

                    just to trigger build action

                    * Update package.json

                    to trigger build action

                commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
                Merge: eaadb729 8d437c3f
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Apr 24 14:35:37 2023 +0200

                    Merge branch 'staging' into ms-2022-08-18-yellow

                commit eaadb729f90441417c899cf4869e26a1b789bb42
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Apr 24 12:39:23 2023 +0200

                    Update package.json

                    to trigger build action

                commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Apr 24 11:26:05 2023 +0200

                    Update package.json

                    just to trigger build action

                commit 09007706e2ec26c6006d7d19a756129d093ac306
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Apr 24 09:36:38 2023 +0200

                    - schema expansion test

                commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 17:00:05 2023 +0200

                    Ms 2022 08 18 yellow (#350)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                    * - can't go to squonk job execution page if the url is not available

                    * - Add status to the job table
                    - Revert the disabled buttons if I can't run the job for the target
                    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                    * frontend fixes before green release:
                    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                    * - hopefully fixed problem with reloading older projects

                    * - fixed bad merge from staging

                commit 7790dfbc261a302018423ce1a506eb33eb48d683
                Merge: bf42cc20 45438127
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 16:57:36 2023 +0200

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit bf42cc20b514c4b3708b606557cb576324f02a20
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 16:57:18 2023 +0200

                    - fixed bad merge from staging

                commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 15:47:17 2023 +0200

                    Ms 2022 08 18 yellow (#349)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                    * - can't go to squonk job execution page if the url is not available

                    * - Add status to the job table
                    - Revert the disabled buttons if I can't run the job for the target
                    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                    * frontend fixes before green release:
                    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                    * - hopefully fixed problem with reloading older projects

                commit 45438127c520d201677dd1b5c1fd876cdfb035e4
                Merge: 73b5d4c7 dcbf19fd
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 15:46:11 2023 +0200

                    Merge branch 'staging' into ms-2022-08-18-yellow

                commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
                Merge: b74587f0 1447b079
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 15:28:34 2023 +0200

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 15:27:49 2023 +0200

                    - hopefully fixed problem with reloading older projects

                commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 12:42:14 2023 +0200

                    Ms 2022 08 18 yellow (#348)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                    * - can't go to squonk job execution page if the url is not available

                    * - Add status to the job table
                    - Revert the disabled buttons if I can't run the job for the target
                    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                    * frontend fixes before green release:
                    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
                Merge: b774ac60 d7b5e5c2
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 12:41:03 2023 +0200

                    Merge branch 'staging' into ms-2022-08-18-yellow

                commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Apr 11 12:05:53 2023 +0200

                    frontend fixes before green release:
                    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Apr 6 14:20:00 2023 +0200

                    - Add status to the job table
                    - Revert the disabled buttons if I can't run the job for the target
                    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Apr 6 10:43:08 2023 +0200

                    Ms 2022 08 18 yellow (#347)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                    * - can't go to squonk job execution page if the url is not available

                commit 17e89cefe8264584ebe0fadc637a1fac542704ac
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Apr 6 10:23:27 2023 +0200

                    - can't go to squonk job execution page if the url is not available

                commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Apr 6 09:11:52 2023 +0200

                    Minor fixes before the release (#346)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                commit c8b5f20dd521c7007f08531736541ca84b041a85
                Merge: 8d500638 2cd48e04
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Apr 5 14:35:17 2023 +0200

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8d50063887bc2f6335550f15fe69cc93b17be30e
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Apr 5 14:34:49 2023 +0200

                    - new BE image

                commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
                Merge: 0fddd791 b20adee8
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Apr 5 13:00:20 2023 +0200

                    Merge branch 'staging' into ms-2022-08-18-yellow

                commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Apr 5 12:09:36 2023 +0200

                    Update package.json

                    triggering the build action

                commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Apr 5 10:44:24 2023 +0200

                    - before the release fixes

                commit b10160928bff787161a140e4cffd8aa783a4c482
                Merge: f6699d10 9f5f2b7c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Mar 31 09:38:39 2023 +0200

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Mar 31 09:37:22 2023 +0200

                    - minor typo fix

                commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Mar 24 14:00:10 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 5a37013c71469f9433c36d956174b1efc1e698ab
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Mar 24 12:43:27 2023 +0100

                    Update package.json

                    to trigger build action

                commit b54cdaa4ea816719128c07939a14a99152a8e990
                Merge: 5dfc38be d6d5216d
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Mar 24 11:36:29 2023 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Mar 24 11:35:57 2023 +0100

                    - updated build-dev.yaml

                commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Mar 24 08:52:55 2023 +0100

                    Update package.json

                    trigger build action

                commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Mar 24 08:46:51 2023 +0100

                    Update package.json

                    to trigger build action

                commit b20adee8140c7f46573eb5e7525e97427d23d4d4
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Mar 16 17:29:15 2023 +0100

                    Ms 2022 08 18 yellow (#345)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
                Merge: d777f117 4cb92f6c
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Mar 16 10:50:04 2023 +0100

                    Merge branch 'staging' into ms-2022-08-18-yellow

                commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Mar 16 10:17:34 2023 +0100

                    - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                commit ae0cbdc8540aa440c776be3b84508c710a215d36
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Mar 16 09:01:48 2023 +0100

                    - fixed bugs found in staging

                commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Mar 9 13:05:06 2023 +0100

                    Ms 2022 08 18 yellow (#344)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                commit bc13d845aa206aa7d8d151a8bb53f53335761084
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Mar 9 10:38:18 2023 +0100

                    Update package.json

                    triggering build action

                commit 49d1ad57042d353f76c7368944601a8d64e44596
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Mar 9 10:32:30 2023 +0100

                    Update package.json

                    to trigger build action

                commit fd0df1c021010f4f5e028090493464721b8b2600
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Mar 9 09:11:44 2023 +0100

                    - added message when access to squonk is denied

                commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Mar 8 14:35:57 2023 +0100

                    - fixed problem with id

                commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Mar 8 14:18:47 2023 +0100

                    - authorize user for viewing squonk job

                commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Mar 8 12:58:15 2023 +0100

                    - added more logs

                commit d97a512d75aa621be77ee69b547b21e1653386e1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Mar 8 12:19:18 2023 +0100

                    fixed problem with entries function

                commit 7e28e41d96e57998b979752d3651304bf36713c9
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Mar 8 12:13:08 2023 +0100

                    - added debug logs

                commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Mar 8 11:29:23 2023 +0100

                    - implemented #890

                commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 18:50:08 2023 +0100

                    - fixes because can't debug this locally

                commit 59779b6b80ec7e21af68b219a543a017aa837b14
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 18:29:05 2023 +0100

                    - trying to fix a bug with inputs

                commit 76ccc089efc43589bb381ea6589567dce538aa8b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 18:12:34 2023 +0100

                    - reworked show inputs in jobs table

                commit e862c726c81b0328cc9b7538d9820481b7d85cd8
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 16:46:29 2023 +0100

                    - added debug info

                commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 16:33:00 2023 +0100

                    - added debug info

                commit c4b11af95a56786493e13735ac92b1b1f766af79
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 16:13:41 2023 +0100

                    - added debug info

                commit 6adc86d4f95a362b38747e001f55bde2a104baff
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 15:53:49 2023 +0100

                    - added debug info

                commit e42ed05162106109c927e80620d67b5af31b7ef1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 15:34:10 2023 +0100

                    - added debug info

                commit 39034c54b97f4da301365c69d985640a66c75469
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 15:09:04 2023 +0100

                    - added debug info

                commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Sun Mar 5 14:48:45 2023 +0100

                    - added debug info

                commit 13a00cf2ba8f4ae13de4865096f9def349acd158
                Merge: 0a36ae5c d0317f60
                Author: rsanchezgarc <rubensanchezgarc@gmail.com>
                Date:   Tue Feb 21 20:43:31 2023 +0000

                    Merge pull request #341 from m2ms/ms-2022-08-18-yellow

                    Ms 2022 08 18 yellow release

                commit d0317f607def3b6e1a5651554b338161fce4f040
                Merge: 53164d21 8c4ca1d0
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 20 13:58:48 2023 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 53164d21b23e7a918a772ced6292817b4306031e
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Feb 20 13:57:25 2023 +0100

                    Squashed commit of the following:

                    commit 19b3910d84f9707b8047524cfe44dfa1f8696644
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Feb 20 13:33:18 2023 +0100

                        - new dev BE

                    commit af427c71d9499c975e12b314202bdb0f0ec13826
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Fri Feb 17 08:44:14 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 4cb19eb371b0147dfc51b704a36dba842543d311
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 16 09:09:27 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Wed Feb 15 14:01:32 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Feb 14 08:50:44 2023 +0100

                        - fixed direct links and direct download links

                    commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 9 14:02:18 2023 +0100

                        - fixed job name

                    commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 9 13:28:20 2023 +0100

                        - added fragmenstein-combine-multi-scoring.json

                    commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 9 13:25:35 2023 +0100

                        - checkpoint

                    commit b43373e1c228d9e46f4c831fc46269d614013e92
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 9 10:43:27 2023 +0100

                        - fixed problem where UI would crash if there was a problem during job file transfer of job launch

                    commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 9 09:54:36 2023 +0100

                        - fixed bad project capture from url

                    commit 7d588895cebd0e363aa5d62b36770499364aef06
                    Merge: 11180a5c 4fc7f7bd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Feb 8 09:27:51 2023 +0100

                        Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                    commit 11180a5c0142ea18624ae14ddaad16793fdcb435
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Feb 8 09:26:31 2023 +0100

                        - prevent crash when there is a project associated with target which user is not authorized to see

                    commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Wed Feb 8 07:25:12 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 15:43:38 2023 +0100

                        Update package.json

                        just to trigger the build action

                    commit d0d429c473307ce2bfa825ad9e556084082accd8
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 15:20:25 2023 +0100

                        Update package.json

                        just to trigger the build action

                    commit fcf377b863abf9110e1c0ce752b29bce073349cf
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 14:51:17 2023 +0100

                        - fixed problem when job config windows closes on error

                    commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
                    Merge: 5a3d56bf 0f8e702a
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 13:19:16 2023 +0100

                        Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                    commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 13:18:30 2023 +0100

                        - now sending id of the project and not target_access_string

                    commit 0f8e702a023e2f786c5ba46eab2205f158a75480
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 12:59:19 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 585076db67dc32b58083c184e1ca11a6dddc434b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 12:39:19 2023 +0100

                        - fixed problem when project pane was not showing up right after a project was created

                    commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 12:08:23 2023 +0100

                        - fix for missing project pane

                    commit ba0a1fe55bd53f719d31d795d71877d81366cac9
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Feb 2 09:05:50 2023 +0100

                        - version for job execution - broken UI

                    commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
                    Merge: 51e97af1 a42cad71
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Feb 1 13:58:27 2023 +0100

                        Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                    commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Feb 1 13:57:49 2023 +0100

                        - partial implementation of #1020

                    commit a42cad7193b8c8f02c04378bba01f6f44114ec88
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Jan 26 08:34:01 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Wed Jan 25 09:39:06 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 24 15:10:11 2023 +0100

                        Update package.json

                        just to trigger the build action

                    commit e8e5657cc5f7beecf5813040210605b6cf410cef
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 24 14:04:56 2023 +0100

                        Update package.json

                        just to trigger build

                    commit 24dc912bfdae3bec9c52867f2d638754635cecbb
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 24 12:49:58 2023 +0100

                        - sensitive data moved to .env file

                    commit a98c51751368104300a872f116cc22acc09cec44
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 24 12:49:06 2023 +0100

                        - added .env to gitignore

                    commit 13b4bed082612315afc948192fe758fb42edf63d
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 24 12:47:56 2023 +0100

                        - mending an error

                    commit 5b74eb4326389e11b923b560f6603586bfc3b87c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Jan 18 09:52:19 2023 +0100

                        - checkpoint

                    commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 17 10:10:27 2023 +0100

                        - initial implementation #1020

                commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Jan 16 11:35:37 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Jan 13 10:47:51 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 0d6abaa08dc7a174d915d33e21a1667accd39423
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Jan 12 10:18:23 2023 +0100

                    Update package.json

                    just to trigger build action

                commit d5905966cb9bf2994f93668911873108832d7578
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Jan 11 11:02:25 2023 +0100

                    - forgot to reset debug constants

                commit df7057032baa70df6451b7faf0a232fa75a1e55b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Jan 11 08:05:23 2023 +0100

                    - minor fix for upload_status

                commit 698d123634ded171f161c3bb9f27e4e1600730be
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 10 15:42:30 2023 +0100

                    - minor fix for upload_status

                commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jan 10 15:26:03 2023 +0100

                    - upload_failed now taken into the account

                commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Jan 10 13:35:25 2023 +0100

                    Update package.json

                    - just to trigger build action

                commit e6fbd6d213418dfd9708e206da341e8e37e776c3
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Tue Jan 10 11:54:17 2023 +0100

                    Update package.json

                    just to trigger build action

                commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Fri Dec 23 13:01:20 2022 +0100

                    - updated README.md

                commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
                Merge: 6a7a0dda 782b84b5
                Author: rsanchezgarc <rubensanchezgarc@gmail.com>
                Date:   Tue Dec 20 18:11:19 2022 +0000

                    Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

                    Animate to new orientation matrix first

                commit 5504bd464e1d699833f258b994e344cb339cb234
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Dec 20 08:06:06 2022 +0100

                    Squashed commit of the following:

                    commit cec398dcf0a14f7e433b2baec849e29001358839
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Dec 20 08:00:30 2022 +0100

                        -

                    commit 885f08e18f7983723a0944bd90cec646c869ee89
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Fri Dec 16 13:18:38 2022 +0100

                        - bug fix in progress for #970

                    commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Dec 15 16:30:41 2022 +0100

                        - now user can insert list of strings as an input for a job

                    commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Dec 14 06:07:28 2022 +0100

                        - initial implementation of #970

                    commit 89010ea549ade47427b6454c3b92a37dff0c449b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec 5 08:26:35 2022 +0100

                        - #1001

                commit 6fa2432f7226be0d54f7ce608719c0d59863d367
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:09:59 2022 +0100

                    Squashed commit of the following:

                    commit 553235691beedd110072226ff20b6b49a6aad1ee
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec 19 10:06:41 2022 +0100

                        - orient first then remove/add stuff

                commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
                Merge: eaa4ccbd f07779ce
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:08:49 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

                commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 19 10:08:30 2022 +0100

                    Squashed commit of the following:

                    commit 553235691beedd110072226ff20b6b49a6aad1ee
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec 19 10:06:41 2022 +0100

                        - orient first then remove/add stuff

                commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
                Merge: 356e625e f07779ce
                Author: rsanchezgarc <rubensanchezgarc@gmail.com>
                Date:   Fri Dec 16 12:44:21 2022 +0000

                    Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

                    Ms 2022 08 18 yellow wo 970

                commit f07779ce30667465ea1aba424085e8978827641a
                Merge: 57336b82 dcc2c882
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Fri Dec 16 13:24:09 2022 +0100

                    Merge branch 'master' into ms-2022-08-18-yellow-wo-970

                commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Thu Dec 15 16:32:57 2022 +0100

                    Squashed commit of the following:

                    commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Dec 15 16:30:41 2022 +0100

                        - now user can insert list of strings as an input for a job

                    commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Dec 14 06:07:28 2022 +0100

                        - initial implementation of #970

                    commit 89010ea549ade47427b6454c3b92a37dff0c449b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec 5 08:26:35 2022 +0100

                        - #1001

                commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
                Merge: 8ac386cd 57336b82
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:28:30 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Dec 14 06:27:11 2022 +0100

                    Squashed commit of the following:

                    commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Dec 14 06:07:28 2022 +0100

                        - initial implementation of #970

                    commit 89010ea549ade47427b6454c3b92a37dff0c449b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec 5 08:26:35 2022 +0100

                        - #1001

                commit 57336b825cb95aecb3dfff78ab571bb85e906073
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Dec 8 11:41:44 2022 +0100

                    Update package.json

                    just to trigger action

                commit c6c3ed0b16414d528684d63befca6a01634683d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Dec 7 11:57:33 2022 +0100

                    Update package.json

                    just to trigger action

                commit 614b01c80882557160777ba96abc92c2d328112e
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Dec 7 09:38:38 2022 +0100

                    Update package.json

                    just to trigger action

                commit c0d2b3858d074b33303eef48e42f11e7eefac474
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Dec 7 08:39:23 2022 +0100

                    Update package.json

                    just to trigger action

                commit bbf6f91e8498586d666204c3493405c4ca4e7268
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Dec 7 08:31:30 2022 +0100

                    Update package.json

                    just to trigger rebuild

                commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Dec 5 08:28:17 2022 +0100

                    Squashed commit of the following:

                    commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec …
boriskovar-m2ms added a commit that referenced this issue Aug 24, 2023
* Squashed commit of the following:

commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Ga…
boriskovar-m2ms added a commit that referenced this issue Aug 25, 2023
commit eeeed7b8d7fe18c56fe1a4cfc121983ac64d191e
Merge: cfb37b18 21609e56
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Fri Aug 25 09:33:38 2023 +0200

    Merge branch '1102_1108_741' into stagingcandidate

commit 21609e56a351865000fe5d344fe86466952cda8d
Merge: 19989c58 193908be
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Thu Aug 24 13:35:41 2023 +0200

    #1102_1108_741 change column size for assign tags

commit cfb37b1897c6b9ed9cdb6c471ddd27ff8fa59d89
Merge: ef00ddfe a643c7b2
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 12:58:50 2023 +0200

    Merge branch 'staging' into stagingcandidate

commit ef00ddfea24e57b1fafd85bf2ba3d552713e08e8
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Thu Aug 24 12:53:25 2023 +0200

    Squashed commit of the following:

    commit 0a899872335a20b3fdef14ec4c0fc9acafe11c2e
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 12:51:34 2023 +0200

        - red pen and autoselect text

    commit 0be7970f6a8a149f57f1c4932042dbc9b0f0095f
    Merge: 72e182cf a9f515d3
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 10:31:28 2023 +0200

        Merge branch '#1107' of https://github.com/m2ms/fragalysis-frontend into #1107

    commit 72e182cfe60b4dfec95b4a3a146386f64ec5fb8b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 09:39:32 2023 +0200

        - #1107 - changed looks of the color filter

    commit edda836088f5dc53c3ae71d551051aaa13f6cad5
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 10:23:40 2023 +0200

        - new arrows

    commit a9f515d3a06f77e3a2ff0c40a6fc4b179c2475cc
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 09:39:32 2023 +0200

        - #1107 - changed looks of the color filter

    commit b1d0b1df0f7e5c614dddab2f66df75cb87250561
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Aug 23 12:28:35 2023 +0200

        - #1109 - additional fixes for how inspirations dialog is displayed and how it moves using the arrows

    commit 1556345036b541cc2bf586e72a021a8697a16c2b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 22 15:12:17 2023 +0200

        - additional fixes

    commit 7351481a29275ac4f2b634464e8157b7185a0392
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 22 14:44:39 2023 +0200

        - additional fixes

    commit 1edbaa305ac8f6bcf56d0530127a20f75f3c9b61
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 22 13:57:05 2023 +0200

        - fixed scrolling with local arrows

    commit 9d1156a1690cd827ce6213ea850d89848eb0d1ec
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 22 13:32:48 2023 +0200

        - resolved autoscroll problems

    commit 1d10b21882a9704b34a80286507460de26e12e45
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Aug 22 10:02:37 2023 +0200

        - #1109 - fixed selected compounds list so now it works and doesn't crash iteration when there are also compounds from expansion vectors

    commit 5bd9d18d83607257b7689c70e8c69fcaa5d4a36b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Aug 21 15:34:19 2023 +0200

        - rough #1109 implementation should be done

    commit 890c89a888209c9085d04766400fd1662d82a717
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Mon Aug 21 09:06:12 2023 +0200

        - initial commit

    commit 6cd22c49f03f2edf1df7dd161ac296b9d89a8c1d
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Fri Aug 18 08:57:06 2023 +0200

        Squashed commit of the following:

        commit ca88200ded3002c782589a8dccbc08a7156d3f54
        Merge: b6c21b9f 5262a81c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 12:56:46 2023 +0200

            Merge branch 'staging' into stagingcandidate

        commit b6c21b9f74a0281bcf9883a7da07165bbbdc5695
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 12:32:55 2023 +0200

            Squashed commit of the following:

            commit 60528709e830d424c07d290a7daf65cfcf3d9b2c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Aug 15 12:31:31 2023 +0200

                - implemented #1129

        commit 86a1a7c9e26d899d34af4f6cdb85ceb19f207d0d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 15 09:49:39 2023 +0200

            Squashed commit of the following:

            commit 0550be26180579a58c85c520b0930c44f4999011
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Aug 15 08:46:33 2023 +0200

                - fixed #1092

        commit fcf418da068289847e2d7da1d72a19570a8832b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Aug 11 09:19:38 2023 +0200

            Squashed commit of the following:

            commit 5adc61adf29db66e7e09fd2d663c18d064305c33
            Merge: a8c90f24 1aef079a
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Thu Aug 10 15:31:40 2023 +0200

                Merge branch '#1118' of https://github.com/m2ms/fragalysis-frontend into #1118

            commit a8c90f245cf29df1cfee1b7053454cb7d0c0ad4a
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Thu Aug 10 15:31:35 2023 +0200

            commit 1aef079a1728061be8c56f41967bf60666c79a17
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Aug 10 08:25:48 2023 +0200

                Update package.json

                triggering build action

            commit 594ac1970c7099ecfb94cecc3707a6cc9ef2894f
            Merge: 5564d2ce de09cdc6
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Wed Aug 9 11:59:25 2023 +0200

                Merge branch '#1106' into #1118

            commit 5564d2ceaaea797542514f1a9fdfd8901591fb2b
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Wed Aug 9 11:26:34 2023 +0200

            commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
            Merge: 4caeef7b 8b73ee22
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Aug 8 11:38:09 2023 +0200

                Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

            commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Aug 8 11:37:40 2023 +0200

                - updated table styling

            commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Mon Aug 7 13:24:08 2023 +0200

                Update package.json

                just to trigger build action

            commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Aug 7 12:55:44 2023 +0200

                - table is now autosized

            commit e867e77c40598a12fa10ca6ab526880274936752
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Mon Aug 7 09:03:11 2023 +0200

        commit 5262a81ca9a1b9c940e60c736924f88cbad4a8aa
        Merge: d9821b23 c74c7ae1
        Author: Max Winokan <36866506+mwinokan@users.noreply.github.com>
        Date:   Thu Aug 10 16:22:35 2023 +0100

            Merge pull request #364 from xchem/m2ms-1046

            Streamlined CI builds (less noisy)

        commit d9821b2329e98647eab02838114c22b993d10ebb
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Aug 10 15:04:04 2023 +0200

            Fixed problem with new job (#365)

            * Squashed commit of the following:

            commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
            Merge: c924ce24 bc13c611
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Aug 2 16:35:15 2023 +0200

                Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

            commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Aug 2 16:34:40 2023 +0200

                - fixed overflow for target list

            commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
            Merge: 7b88603b 74ffba6f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Aug 2 16:03:35 2023 +0200

                Merge branch 'staging' into RedRelease20230525

            commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Tue Aug 1 15:29:56 2023 +0200

            commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Tue Aug 1 08:41:52 2023 +0200

            commit 11df780229077611f93ab766c508c485d4bcb7b3
            Author: RobertMatuska <robert.matuska@m2ms.sk>
            Date:   Tue Aug 1 08:37:10 2023 +0200

            commit 1252aa88178d9b745e32a5c20c4ca353049545f1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jul 31 15:40:06 2023 +0200

                - fixed overflow

            commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jul 31 14:51:19 2023 +0200

                - fixed problem from #1112 where page-ination controls were not visible

            commit 62227fbd35fb110dc9dec60342beb66ef2582762
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jul 31 13:51:34 2023 +0200

                - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

            commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jul 31 13:33:30 2023 +0200

                - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

            commit f1d0db5f2161a14201b4e447317eeea640f80f06
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jul 31 11:01:21 2023 +0200

                - fixed #1117

            commit 1038f80e842e5df9490554d5244427402dd7d6b7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jul 31 10:11:26 2023 +0200

                - fixed issue #1113

            commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jul 27 16:18:53 2023 +0200

                Redrelease20230525-firstBatch (#354)

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - added debug info

                * - reworked show inputs in jobs table

                * - trying to fix a bug with inputs

                * - fixes because can't debug this locally

                * - implemented #890

                * - added debug logs

                * fixed problem with entries function

                * - added more logs

                * - authorize user for viewing squonk job

                * - fixed problem with id

                * - added message when access to squonk is denied

                * Update package.json

                to trigger build action

                * Update package.json

                triggering build action

                * - fixed bugs found in staging

                * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                * Update package.json

                to trigger build action

                * Update package.json

                trigger build action

                * - updated build-dev.yaml

                * Update package.json

                to trigger build action

                * Update package.json

                just to trigger build action

                * - minor typo fix

                * - before the release fixes

                * Update package.json

                triggering the build action

                * - new BE image

                * - can't go to squonk job execution page if the url is not available

                * - Add status to the job table
                - Revert the disabled buttons if I can't run the job for the target
                - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                * frontend fixes before green release:
                - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                * - hopefully fixed problem with reloading older projects

                * - fixed bad merge from staging

                * - schema expansion test

                * Update package.json

                just to trigger build action

                * Update package.json

                to trigger build action

                * - add button to job table to copy snapshot associated with the job run

                * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

                * added searchString to action and TimeLine

                * #576 restored searchString from snapshot for RHS

                * #576 edited time for search response

                * #576 restore search string for hit navigator

                * #576 Restore search for project history

                * #978 added new button and conditions for showing

                * #978 change modal background and position

                * #978 setted modal window position under buttons

                * #978 fixed onClick for close modal

                * #576 edited tag detail added toggle union/intersec

                * #576 added buttons to Tag Detail

                * #978 added new column and sort by columns

                * #978 edited sort and filter project list table

                * #978 edited filter and search data

                * #576 edit width count

                * Update package.json

                - just to trigger build action

                * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

                * Update package.json

                - just to trigger build action

                * #978 filter for project list and other fix

                * #576 edited LHS height and Tag detail colors

                * #576 added "Select displayed button"

                * #978 edited save change for NGL

                * - semicolons?

                * -merge

                * Squashed commit of the following:

                commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Jul 4 08:00:12 2023 +0200

                    - fixed #1073

                commit ae8406cfdb405dce01d075de39754d2acd6cc55a
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Jun 7 08:26:20 2023 +0200

                    Squashed commit of the following:

                    commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
                    Merge: d266f99b 949f4734
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 26 11:17:58 2023 +0200

                        Merge branch 'staging' into ms-2022-08-18-yellow

                    commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 26 10:50:48 2023 +0200

                        - fixed problem for 'add button to job table to copy snapshot associated with the job run'

                    commit 62784948247ed7f0521b10418b1b8a271e7062f0
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 26 09:43:11 2023 +0200

                        - add button to job table to copy snapshot associated with the job run

                    commit 949f47340369a671516a7c6317f8f7e35ba86984
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Mon Apr 24 14:47:39 2023 +0200

                        Ms 2022 08 18 yellow (#351)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        trigger build action

                        * - updated build-dev.yaml

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        just to trigger build action

                        * - minor typo fix

                        * - before the release fixes

                        * Update package.json

                        triggering the build action

                        * - new BE image

                        * - can't go to squonk job execution page if the url is not available

                        * - Add status to the job table
                        - Revert the disabled buttons if I can't run the job for the target
                        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                        * frontend fixes before green release:
                        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                        * - hopefully fixed problem with reloading older projects

                        * - fixed bad merge from staging

                        * - schema expansion test

                        * Update package.json

                        just to trigger build action

                        * Update package.json

                        to trigger build action

                    commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
                    Merge: eaadb729 8d437c3f
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Mon Apr 24 14:35:37 2023 +0200

                        Merge branch 'staging' into ms-2022-08-18-yellow

                    commit eaadb729f90441417c899cf4869e26a1b789bb42
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Mon Apr 24 12:39:23 2023 +0200

                        Update package.json

                        to trigger build action

                    commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Mon Apr 24 11:26:05 2023 +0200

                        Update package.json

                        just to trigger build action

                    commit 09007706e2ec26c6006d7d19a756129d093ac306
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Apr 24 09:36:38 2023 +0200

                        - schema expansion test

                    commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 17:00:05 2023 +0200

                        Ms 2022 08 18 yellow (#350)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        trigger build action

                        * - updated build-dev.yaml

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        just to trigger build action

                        * - minor typo fix

                        * - before the release fixes

                        * Update package.json

                        triggering the build action

                        * - new BE image

                        * - can't go to squonk job execution page if the url is not available

                        * - Add status to the job table
                        - Revert the disabled buttons if I can't run the job for the target
                        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                        * frontend fixes before green release:
                        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                        * - hopefully fixed problem with reloading older projects

                        * - fixed bad merge from staging

                    commit 7790dfbc261a302018423ce1a506eb33eb48d683
                    Merge: bf42cc20 45438127
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 16:57:36 2023 +0200

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit bf42cc20b514c4b3708b606557cb576324f02a20
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 16:57:18 2023 +0200

                        - fixed bad merge from staging

                    commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 15:47:17 2023 +0200

                        Ms 2022 08 18 yellow (#349)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        trigger build action

                        * - updated build-dev.yaml

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        just to trigger build action

                        * - minor typo fix

                        * - before the release fixes

                        * Update package.json

                        triggering the build action

                        * - new BE image

                        * - can't go to squonk job execution page if the url is not available

                        * - Add status to the job table
                        - Revert the disabled buttons if I can't run the job for the target
                        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                        * frontend fixes before green release:
                        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                        * - hopefully fixed problem with reloading older projects

                    commit 45438127c520d201677dd1b5c1fd876cdfb035e4
                    Merge: 73b5d4c7 dcbf19fd
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 15:46:11 2023 +0200

                        Merge branch 'staging' into ms-2022-08-18-yellow

                    commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
                    Merge: b74587f0 1447b079
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 15:28:34 2023 +0200

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 15:27:49 2023 +0200

                        - hopefully fixed problem with reloading older projects

                    commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 12:42:14 2023 +0200

                        Ms 2022 08 18 yellow (#348)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        trigger build action

                        * - updated build-dev.yaml

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        just to trigger build action

                        * - minor typo fix

                        * - before the release fixes

                        * Update package.json

                        triggering the build action

                        * - new BE image

                        * - can't go to squonk job execution page if the url is not available

                        * - Add status to the job table
                        - Revert the disabled buttons if I can't run the job for the target
                        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                        * frontend fixes before green release:
                        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                    commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
                    Merge: b774ac60 d7b5e5c2
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 12:41:03 2023 +0200

                        Merge branch 'staging' into ms-2022-08-18-yellow

                    commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Apr 11 12:05:53 2023 +0200

                        frontend fixes before green release:
                        - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                    commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Apr 6 14:20:00 2023 +0200

                        - Add status to the job table
                        - Revert the disabled buttons if I can't run the job for the target
                        - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                    commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Apr 6 10:43:08 2023 +0200

                        Ms 2022 08 18 yellow (#347)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        trigger build action

                        * - updated build-dev.yaml

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        just to trigger build action

                        * - minor typo fix

                        * - before the release fixes

                        * Update package.json

                        triggering the build action

                        * - new BE image

                        * - can't go to squonk job execution page if the url is not available

                    commit 17e89cefe8264584ebe0fadc637a1fac542704ac
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Apr 6 10:23:27 2023 +0200

                        - can't go to squonk job execution page if the url is not available

                    commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Apr 6 09:11:52 2023 +0200

                        Minor fixes before the release (#346)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        trigger build action

                        * - updated build-dev.yaml

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        just to trigger build action

                        * - minor typo fix

                        * - before the release fixes

                        * Update package.json

                        triggering the build action

                        * - new BE image

                    commit c8b5f20dd521c7007f08531736541ca84b041a85
                    Merge: 8d500638 2cd48e04
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 5 14:35:17 2023 +0200

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit 8d50063887bc2f6335550f15fe69cc93b17be30e
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 5 14:34:49 2023 +0200

                        - new BE image

                    commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
                    Merge: 0fddd791 b20adee8
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 5 13:00:20 2023 +0200

                        Merge branch 'staging' into ms-2022-08-18-yellow

                    commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 5 12:09:36 2023 +0200

                        Update package.json

                        triggering the build action

                    commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Apr 5 10:44:24 2023 +0200

                        - before the release fixes

                    commit b10160928bff787161a140e4cffd8aa783a4c482
                    Merge: f6699d10 9f5f2b7c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 31 09:38:39 2023 +0200

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 31 09:37:22 2023 +0200

                        - minor typo fix

                    commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 24 14:00:10 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 5a37013c71469f9433c36d956174b1efc1e698ab
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 24 12:43:27 2023 +0100

                        Update package.json

                        to trigger build action

                    commit b54cdaa4ea816719128c07939a14a99152a8e990
                    Merge: 5dfc38be d6d5216d
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 24 11:36:29 2023 +0100

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 24 11:35:57 2023 +0100

                        - updated build-dev.yaml

                    commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 24 08:52:55 2023 +0100

                        Update package.json

                        trigger build action

                    commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Fri Mar 24 08:46:51 2023 +0100

                        Update package.json

                        to trigger build action

                    commit b20adee8140c7f46573eb5e7525e97427d23d4d4
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 16 17:29:15 2023 +0100

                        Ms 2022 08 18 yellow (#345)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                        * - fixed bugs found in staging

                        * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
                    Merge: d777f117 4cb92f6c
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 16 10:50:04 2023 +0100

                        Merge branch 'staging' into ms-2022-08-18-yellow

                    commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 16 10:17:34 2023 +0100

                        - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    commit ae0cbdc8540aa440c776be3b84508c710a215d36
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 16 09:01:48 2023 +0100

                        - fixed bugs found in staging

                    commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 9 13:05:06 2023 +0100

                        Ms 2022 08 18 yellow (#344)

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - added debug info

                        * - reworked show inputs in jobs table

                        * - trying to fix a bug with inputs

                        * - fixes because can't debug this locally

                        * - implemented #890

                        * - added debug logs

                        * fixed problem with entries function

                        * - added more logs

                        * - authorize user for viewing squonk job

                        * - fixed problem with id

                        * - added message when access to squonk is denied

                        * Update package.json

                        to trigger build action

                        * Update package.json

                        triggering build action

                    commit bc13d845aa206aa7d8d151a8bb53f53335761084
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 9 10:38:18 2023 +0100

                        Update package.json

                        triggering build action

                    commit 49d1ad57042d353f76c7368944601a8d64e44596
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 9 10:32:30 2023 +0100

                        Update package.json

                        to trigger build action

                    commit fd0df1c021010f4f5e028090493464721b8b2600
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Thu Mar 9 09:11:44 2023 +0100

                        - added message when access to squonk is denied

                    commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Mar 8 14:35:57 2023 +0100

                        - fixed problem with id

                    commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Mar 8 14:18:47 2023 +0100

                        - authorize user for viewing squonk job

                    commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Mar 8 12:58:15 2023 +0100

                        - added more logs

                    commit d97a512d75aa621be77ee69b547b21e1653386e1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Mar 8 12:19:18 2023 +0100

                        fixed problem with entries function

                    commit 7e28e41d96e57998b979752d3651304bf36713c9
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Mar 8 12:13:08 2023 +0100

                        - added debug logs

                    commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Mar 8 11:29:23 2023 +0100

                        - implemented #890

                    commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 18:50:08 2023 +0100

                        - fixes because can't debug this locally

                    commit 59779b6b80ec7e21af68b219a543a017aa837b14
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 18:29:05 2023 +0100

                        - trying to fix a bug with inputs

                    commit 76ccc089efc43589bb381ea6589567dce538aa8b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 18:12:34 2023 +0100

                        - reworked show inputs in jobs table

                    commit e862c726c81b0328cc9b7538d9820481b7d85cd8
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 16:46:29 2023 +0100

                        - added debug info

                    commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 16:33:00 2023 +0100

                        - added debug info

                    commit c4b11af95a56786493e13735ac92b1b1f766af79
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 16:13:41 2023 +0100

                        - added debug info

                    commit 6adc86d4f95a362b38747e001f55bde2a104baff
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 15:53:49 2023 +0100

                        - added debug info

                    commit e42ed05162106109c927e80620d67b5af31b7ef1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 15:34:10 2023 +0100

                        - added debug info

                    commit 39034c54b97f4da301365c69d985640a66c75469
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 15:09:04 2023 +0100

                        - added debug info

                    commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Sun Mar 5 14:48:45 2023 +0100

                        - added debug info

                    commit 13a00cf2ba8f4ae13de4865096f9def349acd158
                    Merge: 0a36ae5c d0317f60
                    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
                    Date:   Tue Feb 21 20:43:31 2023 +0000

                        Merge pull request #341 from m2ms/ms-2022-08-18-yellow

                        Ms 2022 08 18 yellow release

                    commit d0317f607def3b6e1a5651554b338161fce4f040
                    Merge: 53164d21 8c4ca1d0
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Feb 20 13:58:48 2023 +0100

                        Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                    commit 53164d21b23e7a918a772ced6292817b4306031e
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Feb 20 13:57:25 2023 +0100

                        Squashed commit of the following:

                        commit 19b3910d84f9707b8047524cfe44dfa1f8696644
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Feb 20 13:33:18 2023 +0100

                            - new dev BE

                        commit af427c71d9499c975e12b314202bdb0f0ec13826
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Fri Feb 17 08:44:14 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 4cb19eb371b0147dfc51b704a36dba842543d311
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 16 09:09:27 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Wed Feb 15 14:01:32 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Feb 14 08:50:44 2023 +0100

                            - fixed direct links and direct download links

                        commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 9 14:02:18 2023 +0100

                            - fixed job name

                        commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 9 13:28:20 2023 +0100

                            - added fragmenstein-combine-multi-scoring.json

                        commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 9 13:25:35 2023 +0100

                            - checkpoint

                        commit b43373e1c228d9e46f4c831fc46269d614013e92
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 9 10:43:27 2023 +0100

                            - fixed problem where UI would crash if there was a problem during job file transfer of job launch

                        commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 9 09:54:36 2023 +0100

                            - fixed bad project capture from url

                        commit 7d588895cebd0e363aa5d62b36770499364aef06
                        Merge: 11180a5c 4fc7f7bd
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Feb 8 09:27:51 2023 +0100

                            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                        commit 11180a5c0142ea18624ae14ddaad16793fdcb435
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Feb 8 09:26:31 2023 +0100

                            - prevent crash when there is a project associated with target which user is not authorized to see

                        commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Wed Feb 8 07:25:12 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 15:43:38 2023 +0100

                            Update package.json

                            just to trigger the build action

                        commit d0d429c473307ce2bfa825ad9e556084082accd8
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 15:20:25 2023 +0100

                            Update package.json

                            just to trigger the build action

                        commit fcf377b863abf9110e1c0ce752b29bce073349cf
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 14:51:17 2023 +0100

                            - fixed problem when job config windows closes on error

                        commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
                        Merge: 5a3d56bf 0f8e702a
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 13:19:16 2023 +0100

                            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                        commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 13:18:30 2023 +0100

                            - now sending id of the project and not target_access_string

                        commit 0f8e702a023e2f786c5ba46eab2205f158a75480
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 12:59:19 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 585076db67dc32b58083c184e1ca11a6dddc434b
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 12:39:19 2023 +0100

                            - fixed problem when project pane was not showing up right after a project was created

                        commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 12:08:23 2023 +0100

                            - fix for missing project pane

                        commit ba0a1fe55bd53f719d31d795d71877d81366cac9
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Feb 2 09:05:50 2023 +0100

                            - version for job execution - broken UI

                        commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
                        Merge: 51e97af1 a42cad71
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Feb 1 13:58:27 2023 +0100

                            Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                        commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Feb 1 13:57:49 2023 +0100

                            - partial implementation of #1020

                        commit a42cad7193b8c8f02c04378bba01f6f44114ec88
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Jan 26 08:34:01 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Wed Jan 25 09:39:06 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Jan 24 15:10:11 2023 +0100

                            Update package.json

                            just to trigger the build action

                        commit e8e5657cc5f7beecf5813040210605b6cf410cef
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Jan 24 14:04:56 2023 +0100

                            Update package.json

                            just to trigger build

                        commit 24dc912bfdae3bec9c52867f2d638754635cecbb
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Jan 24 12:49:58 2023 +0100

                            - sensitive data moved to .env file

                        commit a98c51751368104300a872f116cc22acc09cec44
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Jan 24 12:49:06 2023 +0100

                            - added .env to gitignore

                        commit 13b4bed082612315afc948192fe758fb42edf63d
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Jan 24 12:47:56 2023 +0100

                            - mending an error

                        commit 5b74eb4326389e11b923b560f6603586bfc3b87c
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Jan 18 09:52:19 2023 +0100

                            - checkpoint

                        commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Jan 17 10:10:27 2023 +0100

                            - initial implementation #1020

                    commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Mon Jan 16 11:35:37 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Fri Jan 13 10:47:51 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 0d6abaa08dc7a174d915d33e21a1667accd39423
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Thu Jan 12 10:18:23 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit d5905966cb9bf2994f93668911873108832d7578
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Jan 11 11:02:25 2023 +0100

                        - forgot to reset debug constants

                    commit df7057032baa70df6451b7faf0a232fa75a1e55b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Jan 11 08:05:23 2023 +0100

                        - minor fix for upload_status

                    commit 698d123634ded171f161c3bb9f27e4e1600730be
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 10 15:42:30 2023 +0100

                        - minor fix for upload_status

                    commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 10 15:26:03 2023 +0100

                        - upload_failed now taken into the account

                    commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 10 13:35:25 2023 +0100

                        Update package.json

                        - just to trigger build action

                    commit e6fbd6d213418dfd9708e206da341e8e37e776c3
                    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                    Date:   Tue Jan 10 11:54:17 2023 +0100

                        Update package.json

                        just to trigger build action

                    commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Fri Dec 23 13:01:20 2022 +0100

                        - updated README.md

                    commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
                    Merge: 6a7a0dda 782b84b5
                    Author: rsanchezgarc <rubensanchezgarc@gmail.com>
                    Date:   Tue Dec 20 18:11:19 2022 +0000

                        Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

                        Animate to new orientation matrix first

                    commit 5504bd464e1d699833f258b994e344cb339cb234
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Dec 20 08:06:06 2022 +0100

                        Squashed commit of the following:

                        commit cec398dcf0a14f7e433b2baec849e29001358839
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Dec 20 08:00:30 2022 +0100

                            -

                        commit 885f08e18f7983723a0944bd90cec646c869ee89
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Fri Dec 16 13:18:38 2022 +0100

                            - bug fix in progress for #970

                        commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Dec 15 16:30:41 2022 +0100

                            - now user can insert list of strings as an input for a job

                        commit 15e97d0c57a2ab0c683077ea1f588db63645536f
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Dec 14 06:07:28 2022 +0100

                            - initial implementation of #970

                        commit 89010ea549ade47427b6454c3b92a37dff0c449b
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Dec 5 08:26:35 2022 +0100

                            - #1001

                    commit 6fa2432f7226be0d54f7ce608719c0d59863d367
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Dec 19 10:09:59 2022 +0100

                        Squashed commit of the following:

                        commit 553235691beedd110072226ff20b6b49a6aad1ee
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Dec 19 10:06:41 2022 +0100

                            - orient first then remove/add stuff

                    commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
                    Merge: eaa4ccbd f07779ce
                    Author: Boris K…
boriskovar-m2ms added a commit that referenced this issue Aug 25, 2023
commit 11cbc5397dd496b083cc4e4134b049b2ed64dbaf
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Fri Aug 25 15:49:00 2023 +0200

    Squashed commit of the following:

    commit eeeed7b8d7fe18c56fe1a4cfc121983ac64d191e
    Merge: cfb37b18 21609e56
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Fri Aug 25 09:33:38 2023 +0200

        Merge branch '1102_1108_741' into stagingcandidate

    commit 21609e56a351865000fe5d344fe86466952cda8d
    Merge: 19989c58 193908be
    Author: RobertMatuska <robert.matuska@m2ms.sk>
    Date:   Thu Aug 24 13:35:41 2023 +0200

        #1102_1108_741 change column size for assign tags

    commit cfb37b1897c6b9ed9cdb6c471ddd27ff8fa59d89
    Merge: ef00ddfe a643c7b2
    Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 12:58:50 2023 +0200

        Merge branch 'staging' into stagingcandidate

    commit ef00ddfea24e57b1fafd85bf2ba3d552713e08e8
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Thu Aug 24 12:53:25 2023 +0200

        Squashed commit of the following:

        commit 0a899872335a20b3fdef14ec4c0fc9acafe11c2e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 24 12:51:34 2023 +0200

            - red pen and autoselect text

        commit 0be7970f6a8a149f57f1c4932042dbc9b0f0095f
        Merge: 72e182cf a9f515d3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 24 10:31:28 2023 +0200

            Merge branch '#1107' of https://github.com/m2ms/fragalysis-frontend into #1107

        commit 72e182cfe60b4dfec95b4a3a146386f64ec5fb8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 24 09:39:32 2023 +0200

            - #1107 - changed looks of the color filter

        commit edda836088f5dc53c3ae71d551051aaa13f6cad5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 24 10:23:40 2023 +0200

            - new arrows

        commit a9f515d3a06f77e3a2ff0c40a6fc4b179c2475cc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Aug 24 09:39:32 2023 +0200

            - #1107 - changed looks of the color filter

        commit b1d0b1df0f7e5c614dddab2f66df75cb87250561
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Aug 23 12:28:35 2023 +0200

            - #1109 - additional fixes for how inspirations dialog is displayed and how it moves using the arrows

        commit 1556345036b541cc2bf586e72a021a8697a16c2b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 22 15:12:17 2023 +0200

            - additional fixes

        commit 7351481a29275ac4f2b634464e8157b7185a0392
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 22 14:44:39 2023 +0200

            - additional fixes

        commit 1edbaa305ac8f6bcf56d0530127a20f75f3c9b61
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 22 13:57:05 2023 +0200

            - fixed scrolling with local arrows

        commit 9d1156a1690cd827ce6213ea850d89848eb0d1ec
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 22 13:32:48 2023 +0200

            - resolved autoscroll problems

        commit 1d10b21882a9704b34a80286507460de26e12e45
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Aug 22 10:02:37 2023 +0200

            - #1109 - fixed selected compounds list so now it works and doesn't crash iteration when there are also compounds from expansion vectors

        commit 5bd9d18d83607257b7689c70e8c69fcaa5d4a36b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Aug 21 15:34:19 2023 +0200

            - rough #1109 implementation should be done

        commit 890c89a888209c9085d04766400fd1662d82a717
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Aug 21 09:06:12 2023 +0200

            - initial commit

        commit 6cd22c49f03f2edf1df7dd161ac296b9d89a8c1d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Aug 18 08:57:06 2023 +0200

            Squashed commit of the following:

            commit ca88200ded3002c782589a8dccbc08a7156d3f54
            Merge: b6c21b9f 5262a81c
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Aug 15 12:56:46 2023 +0200

                Merge branch 'staging' into stagingcandidate

            commit b6c21b9f74a0281bcf9883a7da07165bbbdc5695
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Aug 15 12:32:55 2023 +0200

                Squashed commit of the following:

                commit 60528709e830d424c07d290a7daf65cfcf3d9b2c
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Aug 15 12:31:31 2023 +0200

                    - implemented #1129

            commit 86a1a7c9e26d899d34af4f6cdb85ceb19f207d0d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Aug 15 09:49:39 2023 +0200

                Squashed commit of the following:

                commit 0550be26180579a58c85c520b0930c44f4999011
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Aug 15 08:46:33 2023 +0200

                    - fixed #1092

            commit fcf418da068289847e2d7da1d72a19570a8832b0
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Aug 11 09:19:38 2023 +0200

                Squashed commit of the following:

                commit 5adc61adf29db66e7e09fd2d663c18d064305c33
                Merge: a8c90f24 1aef079a
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Thu Aug 10 15:31:40 2023 +0200

                    Merge branch '#1118' of https://github.com/m2ms/fragalysis-frontend into #1118

                commit a8c90f245cf29df1cfee1b7053454cb7d0c0ad4a
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Thu Aug 10 15:31:35 2023 +0200

                commit 1aef079a1728061be8c56f41967bf60666c79a17
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Aug 10 08:25:48 2023 +0200

                    Update package.json

                    triggering build action

                commit 594ac1970c7099ecfb94cecc3707a6cc9ef2894f
                Merge: 5564d2ce de09cdc6
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Wed Aug 9 11:59:25 2023 +0200

                    Merge branch '#1106' into #1118

                commit 5564d2ceaaea797542514f1a9fdfd8901591fb2b
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Wed Aug 9 11:26:34 2023 +0200

                commit de09cdc6e9386ca3f6aea63fa373ef75938dec6d
                Merge: 4caeef7b 8b73ee22
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Aug 8 11:38:09 2023 +0200

                    Merge branch '#1106' of https://github.com/m2ms/fragalysis-frontend into #1106

                commit 4caeef7b2f6f9acbf617989b94e62030e6ed8052
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Tue Aug 8 11:37:40 2023 +0200

                    - updated table styling

                commit 8b73ee22d38fb5b93435c4c03fc537334adc3ebc
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Aug 7 13:24:08 2023 +0200

                    Update package.json

                    just to trigger build action

                commit d16130686039662cd7ebe0f9b6eeaadbe57d7d37
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Aug 7 12:55:44 2023 +0200

                    - table is now autosized

                commit e867e77c40598a12fa10ca6ab526880274936752
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Mon Aug 7 09:03:11 2023 +0200

            commit 5262a81ca9a1b9c940e60c736924f88cbad4a8aa
            Merge: d9821b23 c74c7ae1
            Author: Max Winokan <36866506+mwinokan@users.noreply.github.com>
            Date:   Thu Aug 10 16:22:35 2023 +0100

                Merge pull request #364 from xchem/m2ms-1046

                Streamlined CI builds (less noisy)

            commit d9821b2329e98647eab02838114c22b993d10ebb
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Aug 10 15:04:04 2023 +0200

                Fixed problem with new job (#365)

                * Squashed commit of the following:

                commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
                Merge: c924ce24 bc13c611
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Aug 2 16:35:15 2023 +0200

                    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

                commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Wed Aug 2 16:34:40 2023 +0200

                    - fixed overflow for target list

                commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
                Merge: 7b88603b 74ffba6f
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Wed Aug 2 16:03:35 2023 +0200

                    Merge branch 'staging' into RedRelease20230525

                commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Tue Aug 1 15:29:56 2023 +0200

                commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Tue Aug 1 08:41:52 2023 +0200

                commit 11df780229077611f93ab766c508c485d4bcb7b3
                Author: RobertMatuska <robert.matuska@m2ms.sk>
                Date:   Tue Aug 1 08:37:10 2023 +0200

                commit 1252aa88178d9b745e32a5c20c4ca353049545f1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Jul 31 15:40:06 2023 +0200

                    - fixed overflow

                commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Jul 31 14:51:19 2023 +0200

                    - fixed problem from #1112 where page-ination controls were not visible

                commit 62227fbd35fb110dc9dec60342beb66ef2582762
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Jul 31 13:51:34 2023 +0200

                    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

                commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Jul 31 13:33:30 2023 +0200

                    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

                commit f1d0db5f2161a14201b4e447317eeea640f80f06
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Jul 31 11:01:21 2023 +0200

                    - fixed #1117

                commit 1038f80e842e5df9490554d5244427402dd7d6b7
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Jul 31 10:11:26 2023 +0200

                    - fixed issue #1113

                commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Thu Jul 27 16:18:53 2023 +0200

                    Redrelease20230525-firstBatch (#354)

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - added debug info

                    * - reworked show inputs in jobs table

                    * - trying to fix a bug with inputs

                    * - fixes because can't debug this locally

                    * - implemented #890

                    * - added debug logs

                    * fixed problem with entries function

                    * - added more logs

                    * - authorize user for viewing squonk job

                    * - fixed problem with id

                    * - added message when access to squonk is denied

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    triggering build action

                    * - fixed bugs found in staging

                    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    trigger build action

                    * - updated build-dev.yaml

                    * Update package.json

                    to trigger build action

                    * Update package.json

                    just to trigger build action

                    * - minor typo fix

                    * - before the release fixes

                    * Update package.json

                    triggering the build action

                    * - new BE image

                    * - can't go to squonk job execution page if the url is not available

                    * - Add status to the job table
                    - Revert the disabled buttons if I can't run the job for the target
                    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                    * frontend fixes before green release:
                    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                    * - hopefully fixed problem with reloading older projects

                    * - fixed bad merge from staging

                    * - schema expansion test

                    * Update package.json

                    just to trigger build action

                    * Update package.json

                    to trigger build action

                    * - add button to job table to copy snapshot associated with the job run

                    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

                    * added searchString to action and TimeLine

                    * #576 restored searchString from snapshot for RHS

                    * #576 edited time for search response

                    * #576 restore search string for hit navigator

                    * #576 Restore search for project history

                    * #978 added new button and conditions for showing

                    * #978 change modal background and position

                    * #978 setted modal window position under buttons

                    * #978 fixed onClick for close modal

                    * #576 edited tag detail added toggle union/intersec

                    * #576 added buttons to Tag Detail

                    * #978 added new column and sort by columns

                    * #978 edited sort and filter project list table

                    * #978 edited filter and search data

                    * #576 edit width count

                    * Update package.json

                    - just to trigger build action

                    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

                    * Update package.json

                    - just to trigger build action

                    * #978 filter for project list and other fix

                    * #576 edited LHS height and Tag detail colors

                    * #576 added "Select displayed button"

                    * #978 edited save change for NGL

                    * - semicolons?

                    * -merge

                    * Squashed commit of the following:

                    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Tue Jul 4 08:00:12 2023 +0200

                        - fixed #1073

                    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Wed Jun 7 08:26:20 2023 +0200

                        Squashed commit of the following:

                        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
                        Merge: d266f99b 949f4734
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 26 11:17:58 2023 +0200

                            Merge branch 'staging' into ms-2022-08-18-yellow

                        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 26 10:50:48 2023 +0200

                            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

                        commit 62784948247ed7f0521b10418b1b8a271e7062f0
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 26 09:43:11 2023 +0200

                            - add button to job table to copy snapshot associated with the job run

                        commit 949f47340369a671516a7c6317f8f7e35ba86984
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Mon Apr 24 14:47:39 2023 +0200

                            Ms 2022 08 18 yellow (#351)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            trigger build action

                            * - updated build-dev.yaml

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            just to trigger build action

                            * - minor typo fix

                            * - before the release fixes

                            * Update package.json

                            triggering the build action

                            * - new BE image

                            * - can't go to squonk job execution page if the url is not available

                            * - Add status to the job table
                            - Revert the disabled buttons if I can't run the job for the target
                            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                            * frontend fixes before green release:
                            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                            * - hopefully fixed problem with reloading older projects

                            * - fixed bad merge from staging

                            * - schema expansion test

                            * Update package.json

                            just to trigger build action

                            * Update package.json

                            to trigger build action

                        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
                        Merge: eaadb729 8d437c3f
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Mon Apr 24 14:35:37 2023 +0200

                            Merge branch 'staging' into ms-2022-08-18-yellow

                        commit eaadb729f90441417c899cf4869e26a1b789bb42
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Mon Apr 24 12:39:23 2023 +0200

                            Update package.json

                            to trigger build action

                        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Mon Apr 24 11:26:05 2023 +0200

                            Update package.json

                            just to trigger build action

                        commit 09007706e2ec26c6006d7d19a756129d093ac306
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Apr 24 09:36:38 2023 +0200

                            - schema expansion test

                        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 17:00:05 2023 +0200

                            Ms 2022 08 18 yellow (#350)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            trigger build action

                            * - updated build-dev.yaml

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            just to trigger build action

                            * - minor typo fix

                            * - before the release fixes

                            * Update package.json

                            triggering the build action

                            * - new BE image

                            * - can't go to squonk job execution page if the url is not available

                            * - Add status to the job table
                            - Revert the disabled buttons if I can't run the job for the target
                            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                            * frontend fixes before green release:
                            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                            * - hopefully fixed problem with reloading older projects

                            * - fixed bad merge from staging

                        commit 7790dfbc261a302018423ce1a506eb33eb48d683
                        Merge: bf42cc20 45438127
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 16:57:36 2023 +0200

                            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                        commit bf42cc20b514c4b3708b606557cb576324f02a20
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 16:57:18 2023 +0200

                            - fixed bad merge from staging

                        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 15:47:17 2023 +0200

                            Ms 2022 08 18 yellow (#349)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            trigger build action

                            * - updated build-dev.yaml

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            just to trigger build action

                            * - minor typo fix

                            * - before the release fixes

                            * Update package.json

                            triggering the build action

                            * - new BE image

                            * - can't go to squonk job execution page if the url is not available

                            * - Add status to the job table
                            - Revert the disabled buttons if I can't run the job for the target
                            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                            * frontend fixes before green release:
                            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                            * - hopefully fixed problem with reloading older projects

                        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
                        Merge: 73b5d4c7 dcbf19fd
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 15:46:11 2023 +0200

                            Merge branch 'staging' into ms-2022-08-18-yellow

                        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
                        Merge: b74587f0 1447b079
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 15:28:34 2023 +0200

                            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 15:27:49 2023 +0200

                            - hopefully fixed problem with reloading older projects

                        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 12:42:14 2023 +0200

                            Ms 2022 08 18 yellow (#348)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            trigger build action

                            * - updated build-dev.yaml

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            just to trigger build action

                            * - minor typo fix

                            * - before the release fixes

                            * Update package.json

                            triggering the build action

                            * - new BE image

                            * - can't go to squonk job execution page if the url is not available

                            * - Add status to the job table
                            - Revert the disabled buttons if I can't run the job for the target
                            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                            * frontend fixes before green release:
                            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
                        Merge: b774ac60 d7b5e5c2
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 12:41:03 2023 +0200

                            Merge branch 'staging' into ms-2022-08-18-yellow

                        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Tue Apr 11 12:05:53 2023 +0200

                            frontend fixes before green release:
                            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

                        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Apr 6 14:20:00 2023 +0200

                            - Add status to the job table
                            - Revert the disabled buttons if I can't run the job for the target
                            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

                        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Apr 6 10:43:08 2023 +0200

                            Ms 2022 08 18 yellow (#347)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            trigger build action

                            * - updated build-dev.yaml

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            just to trigger build action

                            * - minor typo fix

                            * - before the release fixes

                            * Update package.json

                            triggering the build action

                            * - new BE image

                            * - can't go to squonk job execution page if the url is not available

                        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Apr 6 10:23:27 2023 +0200

                            - can't go to squonk job execution page if the url is not available

                        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Apr 6 09:11:52 2023 +0200

                            Minor fixes before the release (#346)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            trigger build action

                            * - updated build-dev.yaml

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            just to trigger build action

                            * - minor typo fix

                            * - before the release fixes

                            * Update package.json

                            triggering the build action

                            * - new BE image

                        commit c8b5f20dd521c7007f08531736541ca84b041a85
                        Merge: 8d500638 2cd48e04
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 5 14:35:17 2023 +0200

                            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 5 14:34:49 2023 +0200

                            - new BE image

                        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
                        Merge: 0fddd791 b20adee8
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 5 13:00:20 2023 +0200

                            Merge branch 'staging' into ms-2022-08-18-yellow

                        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 5 12:09:36 2023 +0200

                            Update package.json

                            triggering the build action

                        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Apr 5 10:44:24 2023 +0200

                            - before the release fixes

                        commit b10160928bff787161a140e4cffd8aa783a4c482
                        Merge: f6699d10 9f5f2b7c
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 31 09:38:39 2023 +0200

                            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 31 09:37:22 2023 +0200

                            - minor typo fix

                        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 24 14:00:10 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 5a37013c71469f9433c36d956174b1efc1e698ab
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 24 12:43:27 2023 +0100

                            Update package.json

                            to trigger build action

                        commit b54cdaa4ea816719128c07939a14a99152a8e990
                        Merge: 5dfc38be d6d5216d
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 24 11:36:29 2023 +0100

                            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 24 11:35:57 2023 +0100

                            - updated build-dev.yaml

                        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 24 08:52:55 2023 +0100

                            Update package.json

                            trigger build action

                        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Fri Mar 24 08:46:51 2023 +0100

                            Update package.json

                            to trigger build action

                        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 16 17:29:15 2023 +0100

                            Ms 2022 08 18 yellow (#345)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                            * - fixed bugs found in staging

                            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
                        Merge: d777f117 4cb92f6c
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 16 10:50:04 2023 +0100

                            Merge branch 'staging' into ms-2022-08-18-yellow

                        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 16 10:17:34 2023 +0100

                            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

                        commit ae0cbdc8540aa440c776be3b84508c710a215d36
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 16 09:01:48 2023 +0100

                            - fixed bugs found in staging

                        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 9 13:05:06 2023 +0100

                            Ms 2022 08 18 yellow (#344)

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - added debug info

                            * - reworked show inputs in jobs table

                            * - trying to fix a bug with inputs

                            * - fixes because can't debug this locally

                            * - implemented #890

                            * - added debug logs

                            * fixed problem with entries function

                            * - added more logs

                            * - authorize user for viewing squonk job

                            * - fixed problem with id

                            * - added message when access to squonk is denied

                            * Update package.json

                            to trigger build action

                            * Update package.json

                            triggering build action

                        commit bc13d845aa206aa7d8d151a8bb53f53335761084
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 9 10:38:18 2023 +0100

                            Update package.json

                            triggering build action

                        commit 49d1ad57042d353f76c7368944601a8d64e44596
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 9 10:32:30 2023 +0100

                            Update package.json

                            to trigger build action

                        commit fd0df1c021010f4f5e028090493464721b8b2600
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Thu Mar 9 09:11:44 2023 +0100

                            - added message when access to squonk is denied

                        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Mar 8 14:35:57 2023 +0100

                            - fixed problem with id

                        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Mar 8 14:18:47 2023 +0100

                            - authorize user for viewing squonk job

                        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Mar 8 12:58:15 2023 +0100

                            - added more logs

                        commit d97a512d75aa621be77ee69b547b21e1653386e1
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Mar 8 12:19:18 2023 +0100

                            fixed problem with entries function

                        commit 7e28e41d96e57998b979752d3651304bf36713c9
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Mar 8 12:13:08 2023 +0100

                            - added debug logs

                        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Wed Mar 8 11:29:23 2023 +0100

                            - implemented #890

                        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 18:50:08 2023 +0100

                            - fixes because can't debug this locally

                        commit 59779b6b80ec7e21af68b219a543a017aa837b14
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 18:29:05 2023 +0100

                            - trying to fix a bug with inputs

                        commit 76ccc089efc43589bb381ea6589567dce538aa8b
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 18:12:34 2023 +0100

                            - reworked show inputs in jobs table

                        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 16:46:29 2023 +0100

                            - added debug info

                        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 16:33:00 2023 +0100

                            - added debug info

                        commit c4b11af95a56786493e13735ac92b1b1f766af79
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 16:13:41 2023 +0100

                            - added debug info

                        commit 6adc86d4f95a362b38747e001f55bde2a104baff
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 15:53:49 2023 +0100

                            - added debug info

                        commit e42ed05162106109c927e80620d67b5af31b7ef1
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 15:34:10 2023 +0100

                            - added debug info

                        commit 39034c54b97f4da301365c69d985640a66c75469
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 15:09:04 2023 +0100

                            - added debug info

                        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Sun Mar 5 14:48:45 2023 +0100

                            - added debug info

                        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
                        Merge: 0a36ae5c d0317f60
                        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
                        Date:   Tue Feb 21 20:43:31 2023 +0000

                            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

                            Ms 2022 08 18 yellow release

                        commit d0317f607def3b6e1a5651554b338161fce4f040
                        Merge: 53164d21 8c4ca1d0
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Feb 20 13:58:48 2023 +0100

                            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                        commit 53164d21b23e7a918a772ced6292817b4306031e
                        Author: Boris Kovar <boris.kovar@m2ms.sk>
                        Date:   Mon Feb 20 13:57:25 2023 +0100

                            Squashed commit of the following:

                            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Mon Feb 20 13:33:18 2023 +0100

                                - new dev BE

                            commit af427c71d9499c975e12b314202bdb0f0ec13826
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Fri Feb 17 08:44:14 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit 4cb19eb371b0147dfc51b704a36dba842543d311
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 16 09:09:27 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Wed Feb 15 14:01:32 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Tue Feb 14 08:50:44 2023 +0100

                                - fixed direct links and direct download links

                            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 9 14:02:18 2023 +0100

                                - fixed job name

                            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 9 13:28:20 2023 +0100

                                - added fragmenstein-combine-multi-scoring.json

                            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 9 13:25:35 2023 +0100

                                - checkpoint

                            commit b43373e1c228d9e46f4c831fc46269d614013e92
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 9 10:43:27 2023 +0100

                                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

                            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 9 09:54:36 2023 +0100

                                - fixed bad project capture from url

                            commit 7d588895cebd0e363aa5d62b36770499364aef06
                            Merge: 11180a5c 4fc7f7bd
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Wed Feb 8 09:27:51 2023 +0100

                                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Wed Feb 8 09:26:31 2023 +0100

                                - prevent crash when there is a project associated with target which user is not authorized to see

                            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Wed Feb 8 07:25:12 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 15:43:38 2023 +0100

                                Update package.json

                                just to trigger the build action

                            commit d0d429c473307ce2bfa825ad9e556084082accd8
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 15:20:25 2023 +0100

                                Update package.json

                                just to trigger the build action

                            commit fcf377b863abf9110e1c0ce752b29bce073349cf
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 14:51:17 2023 +0100

                                - fixed problem when job config windows closes on error

                            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
                            Merge: 5a3d56bf 0f8e702a
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 13:19:16 2023 +0100

                                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 13:18:30 2023 +0100

                                - now sending id of the project and not target_access_string

                            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 12:59:19 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit 585076db67dc32b58083c184e1ca11a6dddc434b
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 12:39:19 2023 +0100

                                - fixed problem when project pane was not showing up right after a project was created

                            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 12:08:23 2023 +0100

                                - fix for missing project pane

                            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Thu Feb 2 09:05:50 2023 +0100

                                - version for job execution - broken UI

                            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
                            Merge: 51e97af1 a42cad71
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Wed Feb 1 13:58:27 2023 +0100

                                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

                            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Wed Feb 1 13:57:49 2023 +0100

                                - partial implementation of #1020

                            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Thu Jan 26 08:34:01 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Wed Jan 25 09:39:06 2023 +0100

                                Update package.json

                                just to trigger build action

                            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Tue Jan 24 15:10:11 2023 +0100

                                Update package.json

                                just to trigger the build action

                            commit e8e5657cc5f7beecf5813040210605b6cf410cef
                            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                            Date:   Tue Jan 24 14:04:56 2023 +0100

                                Update package.json

                                just to trigger build

                            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Tue Jan 24 12:49:58 2023 +0100

                                - sensitive data moved to .env file

                            commit a98c51751368104300a872f116cc22acc09cec44
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Tue Jan 24 12:49:06 2023 +0100

                                - added .env to gitignore

                            commit 13b4bed082612315afc948192fe758fb42edf63d
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Tue Jan 24 12:47:56 2023 +0100

                                - mending an error

                            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Wed Jan 18 09:52:19 2023 +0100

                                - checkpoint

                            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
                            Author: Boris Kovar <boris.kovar@m2ms.sk>
                            Date:   Tue Jan 17 10:10:27 2023 +0100

                                - initial implementation #1020

                        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Mon Jan 16 11:35:37 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Fri Jan 13 10:47:51 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
                        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                        Date:   Thu Jan 12 10:18:23 2023 +0100

                            Update package.json

                            just to trigger build action

                        commit d5905966cb9bf2994f93668911873108832d7578
                        Author: Boris Kovar <boris.kovar@m2ms.sk…
boriskovar-m2ms added a commit that referenced this issue Sep 26, 2023
* Squashed commit of the following:

commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gaspera…
boriskovar-m2ms added a commit that referenced this issue Sep 26, 2023
* Squashed commit of the following:

commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Ga…
boriskovar-m2ms added a commit that referenced this issue Dec 19, 2023
* Squashed commit of the following:

commit d53d1c008f3db605dd4b1e5ae9dfe10302da28fb
Merge: c924ce24 bc13c611
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:35:15 2023 +0200

    Merge branch 'RedRelease20230525' of https://github.com/m2ms/fragalysis-frontend into RedRelease20230525

commit c924ce24af3190079baf7c3b7fc2cd1fb819e93e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:34:40 2023 +0200

    - fixed overflow for target list

commit bc13c6114bbf02d88bd6aa833c20c3acc6d8b685
Merge: 7b88603b 74ffba6f
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Wed Aug 2 16:03:35 2023 +0200

    Merge branch 'staging' into RedRelease20230525

commit 7b88603bf0d93b60c6fa996a35b5afb21a3d8835
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 15:29:56 2023 +0200

    #1112 fixed project list filter

commit 6951206f2d9285ac2aa59f34c20cd2383735ba8f
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:41:52 2023 +0200

    #1112 fixed numb rows per page vs numb of projects

commit 11df780229077611f93ab766c508c485d4bcb7b3
Author: RobertMatuska <robert.matuska@m2ms.sk>
Date:   Tue Aug 1 08:37:10 2023 +0200

    #1112 fixed pagination numbers in dropdown

commit 1252aa88178d9b745e32a5c20c4ca353049545f1
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 15:40:06 2023 +0200

    - fixed overflow

commit f2d8eac83d6685ba4bc8929754519f9b48730cb5
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 14:51:19 2023 +0200

    - fixed problem from #1112 where page-ination controls were not visible

commit 62227fbd35fb110dc9dec60342beb66ef2582762
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:51:34 2023 +0200

    - fixed issue when implicit actions setSearchString was tracked which caused that user had to click undo twice after clicking on the dataset tab

commit 3bb794549e6eda0c4cb43ceeeac1df152648ba0e
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 13:33:30 2023 +0200

    - fixed #1116 + whole bunch of other bugs related to preserving and restoring search (both LHS and RHS) string from snapshot

commit f1d0db5f2161a14201b4e447317eeea640f80f06
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 11:01:21 2023 +0200

    - fixed #1117

commit 1038f80e842e5df9490554d5244427402dd7d6b7
Author: Boris Kovar <boris.kovar@m2ms.sk>
Date:   Mon Jul 31 10:11:26 2023 +0200

    - fixed issue #1113

commit 74ffba6f3fc623959595bc3a4aa57bf1af11d718
Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
Date:   Thu Jul 27 16:18:53 2023 +0200

    Redrelease20230525-firstBatch (#354)

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - added debug info

    * - reworked show inputs in jobs table

    * - trying to fix a bug with inputs

    * - fixes because can't debug this locally

    * - implemented #890

    * - added debug logs

    * fixed problem with entries function

    * - added more logs

    * - authorize user for viewing squonk job

    * - fixed problem with id

    * - added message when access to squonk is denied

    * Update package.json

    to trigger build action

    * Update package.json

    triggering build action

    * - fixed bugs found in staging

    * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

    * Update package.json

    to trigger build action

    * Update package.json

    trigger build action

    * - updated build-dev.yaml

    * Update package.json

    to trigger build action

    * Update package.json

    just to trigger build action

    * - minor typo fix

    * - before the release fixes

    * Update package.json

    triggering the build action

    * - new BE image

    * - can't go to squonk job execution page if the url is not available

    * - Add status to the job table
    - Revert the disabled buttons if I can't run the job for the target
    - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

    * frontend fixes before green release:
    - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

    * - hopefully fixed problem with reloading older projects

    * - fixed bad merge from staging

    * - schema expansion test

    * Update package.json

    just to trigger build action

    * Update package.json

    to trigger build action

    * - add button to job table to copy snapshot associated with the job run

    * - fixed problem for 'add button to job table to copy snapshot associated with the job run'

    * added searchString to action and TimeLine

    * #576 restored searchString from snapshot for RHS

    * #576 edited time for search response

    * #576 restore search string for hit navigator

    * #576 Restore search for project history

    * #978 added new button and conditions for showing

    * #978 change modal background and position

    * #978 setted modal window position under buttons

    * #978 fixed onClick for close modal

    * #576 edited tag detail added toggle union/intersec

    * #576 added buttons to Tag Detail

    * #978 added new column and sort by columns

    * #978 edited sort and filter project list table

    * #978 edited filter and search data

    * #576 edit width count

    * Update package.json

    - just to trigger build action

    * - fixed instance when project is missing from session-project (which AFAIK should never happen though)

    * Update package.json

    - just to trigger build action

    * #978 filter for project list and other fix

    * #576 edited LHS height and Tag detail colors

    * #576 added "Select displayed button"

    * #978 edited save change for NGL

    * - semicolons?

    * -merge

    * Squashed commit of the following:

    commit 66118b5d4dfbddd50cdce5af77c857e90325a78b
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Tue Jul 4 08:00:12 2023 +0200

        - fixed #1073

    commit ae8406cfdb405dce01d075de39754d2acd6cc55a
    Author: Boris Kovar <boris.kovar@m2ms.sk>
    Date:   Wed Jun 7 08:26:20 2023 +0200

        Squashed commit of the following:

        commit e42baf37a2503f3378c856e26e8d699bc71bd3ac
        Merge: d266f99b 949f4734
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 11:17:58 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d266f99bfbccd23d6a9951bdba71bf487554e9bc
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 10:50:48 2023 +0200

            - fixed problem for 'add button to job table to copy snapshot associated with the job run'

        commit 62784948247ed7f0521b10418b1b8a271e7062f0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 26 09:43:11 2023 +0200

            - add button to job table to copy snapshot associated with the job run

        commit 949f47340369a671516a7c6317f8f7e35ba86984
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:47:39 2023 +0200

            Ms 2022 08 18 yellow (#351)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

            * - schema expansion test

            * Update package.json

            just to trigger build action

            * Update package.json

            to trigger build action

        commit f41cdb0d525e993a7a48c0dbb397618e0ea76bc9
        Merge: eaadb729 8d437c3f
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 14:35:37 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit eaadb729f90441417c899cf4869e26a1b789bb42
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 12:39:23 2023 +0200

            Update package.json

            to trigger build action

        commit 1b46f37c6ac11d5c7e9a0a1ceff7b68dad785b27
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 11:26:05 2023 +0200

            Update package.json

            just to trigger build action

        commit 09007706e2ec26c6006d7d19a756129d093ac306
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Apr 24 09:36:38 2023 +0200

            - schema expansion test

        commit 8d437c3f6b735953eb07f06fec82bdfdd26d7e44
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 17:00:05 2023 +0200

            Ms 2022 08 18 yellow (#350)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

            * - fixed bad merge from staging

        commit 7790dfbc261a302018423ce1a506eb33eb48d683
        Merge: bf42cc20 45438127
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:36 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit bf42cc20b514c4b3708b606557cb576324f02a20
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 16:57:18 2023 +0200

            - fixed bad merge from staging

        commit adc2f5b9e3fd8495c92b8089fb851ae3bc5a49fa
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:47:17 2023 +0200

            Ms 2022 08 18 yellow (#349)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

            * - hopefully fixed problem with reloading older projects

        commit 45438127c520d201677dd1b5c1fd876cdfb035e4
        Merge: 73b5d4c7 dcbf19fd
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:46:11 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 73b5d4c7e705124ed5e1941226cae17ab5044ef6
        Merge: b74587f0 1447b079
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:28:34 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit b74587f0bdd68af93e44692c6c41517ed36ad4b1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 15:27:49 2023 +0200

            - hopefully fixed problem with reloading older projects

        commit dcbf19fd11a4734d18714b154b7b6e577b0ccd69
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:42:14 2023 +0200

            Ms 2022 08 18 yellow (#348)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

            * - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

            * frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 1447b079e018d9ce1d67b96161be626b7d97a6bd
        Merge: b774ac60 d7b5e5c2
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:41:03 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit b774ac6044bc97f38ef5b2e62a6eeea2a94e0dc5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Apr 11 12:05:53 2023 +0200

            frontend fixes before green release:
            - If the user is logged in and working on the session project the SHARE button will share current snapshot and not create a new snapshot

        commit 56ce17ff1db67e6deb96d2e16c4c7ae4e0b6c39b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 14:20:00 2023 +0200

            - Add status to the job table
            - Revert the disabled buttons if I can't run the job for the target
            - Show the exception from squonk access when click OPEN IN SQUONK and show error messag

        commit d7b5e5c26dae7824d3c930fb263a02c592a2c042
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:43:08 2023 +0200

            Ms 2022 08 18 yellow (#347)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

            * - can't go to squonk job execution page if the url is not available

        commit 17e89cefe8264584ebe0fadc637a1fac542704ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 10:23:27 2023 +0200

            - can't go to squonk job execution page if the url is not available

        commit 16f0cbddafd994293e45573f3d6ebeeeab1e4b22
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Apr 6 09:11:52 2023 +0200

            Minor fixes before the release (#346)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

            * Update package.json

            to trigger build action

            * Update package.json

            trigger build action

            * - updated build-dev.yaml

            * Update package.json

            to trigger build action

            * Update package.json

            just to trigger build action

            * - minor typo fix

            * - before the release fixes

            * Update package.json

            triggering the build action

            * - new BE image

        commit c8b5f20dd521c7007f08531736541ca84b041a85
        Merge: 8d500638 2cd48e04
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:35:17 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8d50063887bc2f6335550f15fe69cc93b17be30e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 14:34:49 2023 +0200

            - new BE image

        commit 2cd48e0474f31fe9f0d0f4eb256cad32ed5516cd
        Merge: 0fddd791 b20adee8
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 13:00:20 2023 +0200

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit 0fddd791812ce9e4093a784850c8e4c5698f3f18
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 12:09:36 2023 +0200

            Update package.json

            triggering the build action

        commit bed2dc1bf438a2f61b61fdd2d1b18753d1ef58be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Apr 5 10:44:24 2023 +0200

            - before the release fixes

        commit b10160928bff787161a140e4cffd8aa783a4c482
        Merge: f6699d10 9f5f2b7c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:38:39 2023 +0200

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit f6699d106af94bbba6be1494a0c83e0cf1a5b084
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 31 09:37:22 2023 +0200

            - minor typo fix

        commit 9f5f2b7cad0ebb482d8069114d52bf65ca6c6531
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 14:00:10 2023 +0100

            Update package.json

            just to trigger build action

        commit 5a37013c71469f9433c36d956174b1efc1e698ab
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 12:43:27 2023 +0100

            Update package.json

            to trigger build action

        commit b54cdaa4ea816719128c07939a14a99152a8e990
        Merge: 5dfc38be d6d5216d
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:36:29 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 5dfc38bef9b0a0fead21b824db58461c185f98fd
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 11:35:57 2023 +0100

            - updated build-dev.yaml

        commit d6d5216dce40de14910bde76b5f4fb8650bdbd9c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:52:55 2023 +0100

            Update package.json

            trigger build action

        commit 6bd9fcb0773fc3bbf5266ab9022d6e365dff9cfc
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Mar 24 08:46:51 2023 +0100

            Update package.json

            to trigger build action

        commit b20adee8140c7f46573eb5e7525e97427d23d4d4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 17:29:15 2023 +0100

            Ms 2022 08 18 yellow (#345)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

            * - fixed bugs found in staging

            * - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit 3a9a478d3bdbcb54802346efe2ec5e1f18242721
        Merge: d777f117 4cb92f6c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:50:04 2023 +0100

            Merge branch 'staging' into ms-2022-08-18-yellow

        commit d777f117bbfab9a367ef8ad04c2fcf540cf19ef6
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 10:17:34 2023 +0100

            - resolved build issue where Terser complained about unexpected token. Problem was inclusion of yup package which is used for validation of Formik forms

        commit ae0cbdc8540aa440c776be3b84508c710a215d36
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 16 09:01:48 2023 +0100

            - fixed bugs found in staging

        commit 4cb92f6ca3c986a087b840f9327e921ed17e1b4c
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 13:05:06 2023 +0100

            Ms 2022 08 18 yellow (#344)

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - added debug info

            * - reworked show inputs in jobs table

            * - trying to fix a bug with inputs

            * - fixes because can't debug this locally

            * - implemented #890

            * - added debug logs

            * fixed problem with entries function

            * - added more logs

            * - authorize user for viewing squonk job

            * - fixed problem with id

            * - added message when access to squonk is denied

            * Update package.json

            to trigger build action

            * Update package.json

            triggering build action

        commit bc13d845aa206aa7d8d151a8bb53f53335761084
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:38:18 2023 +0100

            Update package.json

            triggering build action

        commit 49d1ad57042d353f76c7368944601a8d64e44596
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 10:32:30 2023 +0100

            Update package.json

            to trigger build action

        commit fd0df1c021010f4f5e028090493464721b8b2600
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Mar 9 09:11:44 2023 +0100

            - added message when access to squonk is denied

        commit 622b635472e0ed7be1ae36062addd0f91d9ff6f4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:35:57 2023 +0100

            - fixed problem with id

        commit 74a1a62ca7a564d481be34c4301771ce7f5dd76a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 14:18:47 2023 +0100

            - authorize user for viewing squonk job

        commit aa55bc41ee6a6fce4d8b146362e276265eed0af3
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:58:15 2023 +0100

            - added more logs

        commit d97a512d75aa621be77ee69b547b21e1653386e1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:19:18 2023 +0100

            fixed problem with entries function

        commit 7e28e41d96e57998b979752d3651304bf36713c9
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 12:13:08 2023 +0100

            - added debug logs

        commit f4becf9c94cf8c5eec225fde7b24c73131e0e338
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Mar 8 11:29:23 2023 +0100

            - implemented #890

        commit bcd3ec01ddc68d3dd1dce78f1f3ca165e1633fd4
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:50:08 2023 +0100

            - fixes because can't debug this locally

        commit 59779b6b80ec7e21af68b219a543a017aa837b14
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:29:05 2023 +0100

            - trying to fix a bug with inputs

        commit 76ccc089efc43589bb381ea6589567dce538aa8b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 18:12:34 2023 +0100

            - reworked show inputs in jobs table

        commit e862c726c81b0328cc9b7538d9820481b7d85cd8
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:46:29 2023 +0100

            - added debug info

        commit 471d947b83f159bde413a32de06dbd10b9c4dfaf
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:33:00 2023 +0100

            - added debug info

        commit c4b11af95a56786493e13735ac92b1b1f766af79
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 16:13:41 2023 +0100

            - added debug info

        commit 6adc86d4f95a362b38747e001f55bde2a104baff
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:53:49 2023 +0100

            - added debug info

        commit e42ed05162106109c927e80620d67b5af31b7ef1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:34:10 2023 +0100

            - added debug info

        commit 39034c54b97f4da301365c69d985640a66c75469
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 15:09:04 2023 +0100

            - added debug info

        commit 9eee228b45b94479edfab5d6279d3e0ce4ccb8d1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Sun Mar 5 14:48:45 2023 +0100

            - added debug info

        commit 13a00cf2ba8f4ae13de4865096f9def349acd158
        Merge: 0a36ae5c d0317f60
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Feb 21 20:43:31 2023 +0000

            Merge pull request #341 from m2ms/ms-2022-08-18-yellow

            Ms 2022 08 18 yellow release

        commit d0317f607def3b6e1a5651554b338161fce4f040
        Merge: 53164d21 8c4ca1d0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:58:48 2023 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 53164d21b23e7a918a772ced6292817b4306031e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Feb 20 13:57:25 2023 +0100

            Squashed commit of the following:

            commit 19b3910d84f9707b8047524cfe44dfa1f8696644
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Feb 20 13:33:18 2023 +0100

                - new dev BE

            commit af427c71d9499c975e12b314202bdb0f0ec13826
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Fri Feb 17 08:44:14 2023 +0100

                Update package.json

                just to trigger build action

            commit 4cb19eb371b0147dfc51b704a36dba842543d311
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 16 09:09:27 2023 +0100

                Update package.json

                just to trigger build action

            commit 7612967a111ec486f2072ca3ddd88330b4ad37c9
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 15 14:01:32 2023 +0100

                Update package.json

                just to trigger build action

            commit 4e8b27d9b65fe372e06df45bc720abb52f81dbe2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Feb 14 08:50:44 2023 +0100

                - fixed direct links and direct download links

            commit c08da4bf71caf536e95423fb8b1e5d8ab01c60e7
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 14:02:18 2023 +0100

                - fixed job name

            commit 4b9a491f0478849e268dc7b825ba358585cdb2ab
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:28:20 2023 +0100

                - added fragmenstein-combine-multi-scoring.json

            commit ca4f946d07074e87a74ac6a3d2272c1735343cb1
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 13:25:35 2023 +0100

                - checkpoint

            commit b43373e1c228d9e46f4c831fc46269d614013e92
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 10:43:27 2023 +0100

                - fixed problem where UI would crash if there was a problem during job file transfer of job launch

            commit 3618b10e2b77f4a7a173f38a8d8bbdc0a853805b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 9 09:54:36 2023 +0100

                - fixed bad project capture from url

            commit 7d588895cebd0e363aa5d62b36770499364aef06
            Merge: 11180a5c 4fc7f7bd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:27:51 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 11180a5c0142ea18624ae14ddaad16793fdcb435
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 09:26:31 2023 +0100

                - prevent crash when there is a project associated with target which user is not authorized to see

            commit 4fc7f7bd2d0aae799099b29e256e3c0834e9576f
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Feb 8 07:25:12 2023 +0100

                Update package.json

                just to trigger build action

            commit 2b2665cfc609f621eb9bf505b9a86e6bd4fb3d35
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:43:38 2023 +0100

                Update package.json

                just to trigger the build action

            commit d0d429c473307ce2bfa825ad9e556084082accd8
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 15:20:25 2023 +0100

                Update package.json

                just to trigger the build action

            commit fcf377b863abf9110e1c0ce752b29bce073349cf
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 14:51:17 2023 +0100

                - fixed problem when job config windows closes on error

            commit c9e39f4da281f333c620811cf7ccfb6b8438cc1f
            Merge: 5a3d56bf 0f8e702a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:19:16 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 5a3d56bf87d9c8d8e6007dba5db8c1239dbf39a2
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 13:18:30 2023 +0100

                - now sending id of the project and not target_access_string

            commit 0f8e702a023e2f786c5ba46eab2205f158a75480
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:59:19 2023 +0100

                Update package.json

                just to trigger build action

            commit 585076db67dc32b58083c184e1ca11a6dddc434b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:39:19 2023 +0100

                - fixed problem when project pane was not showing up right after a project was created

            commit fa7fd759c30c3abf4e12b1c17af4107424993dc4
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 12:08:23 2023 +0100

                - fix for missing project pane

            commit ba0a1fe55bd53f719d31d795d71877d81366cac9
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Feb 2 09:05:50 2023 +0100

                - version for job execution - broken UI

            commit 51555e1ba1eeb12e1eef340f108d7d3b595e6210
            Merge: 51e97af1 a42cad71
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:58:27 2023 +0100

                Merge branch '#1020' of https://github.com/m2ms/fragalysis-frontend into #1020

            commit 51e97af1db45d3b4bb9b5d1fdd55a07991a9a19a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Feb 1 13:57:49 2023 +0100

                - partial implementation of #1020

            commit a42cad7193b8c8f02c04378bba01f6f44114ec88
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Thu Jan 26 08:34:01 2023 +0100

                Update package.json

                just to trigger build action

            commit 96c0216e8b29169c9c1bf29471eafb5bddd24e5b
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Wed Jan 25 09:39:06 2023 +0100

                Update package.json

                just to trigger build action

            commit c7de9cf16f783fad2bdfb78224a818221fa24ba1
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 15:10:11 2023 +0100

                Update package.json

                just to trigger the build action

            commit e8e5657cc5f7beecf5813040210605b6cf410cef
            Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 14:04:56 2023 +0100

                Update package.json

                just to trigger build

            commit 24dc912bfdae3bec9c52867f2d638754635cecbb
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:58 2023 +0100

                - sensitive data moved to .env file

            commit a98c51751368104300a872f116cc22acc09cec44
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:49:06 2023 +0100

                - added .env to gitignore

            commit 13b4bed082612315afc948192fe758fb42edf63d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 24 12:47:56 2023 +0100

                - mending an error

            commit 5b74eb4326389e11b923b560f6603586bfc3b87c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Jan 18 09:52:19 2023 +0100

                - checkpoint

            commit d4b88dfe5c525b7c471d97ac47d46f9d992bfa48
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Jan 17 10:10:27 2023 +0100

                - initial implementation #1020

        commit 8c4ca1d022f2a5841d68dde70edd9f433c539b83
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Jan 16 11:35:37 2023 +0100

            Update package.json

            just to trigger build action

        commit 436196bb65fe5eb44f38abc3bc18cf827f09c8d6
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Jan 13 10:47:51 2023 +0100

            Update package.json

            just to trigger build action

        commit 0d6abaa08dc7a174d915d33e21a1667accd39423
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Jan 12 10:18:23 2023 +0100

            Update package.json

            just to trigger build action

        commit d5905966cb9bf2994f93668911873108832d7578
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 11:02:25 2023 +0100

            - forgot to reset debug constants

        commit df7057032baa70df6451b7faf0a232fa75a1e55b
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Jan 11 08:05:23 2023 +0100

            - minor fix for upload_status

        commit 698d123634ded171f161c3bb9f27e4e1600730be
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:42:30 2023 +0100

            - minor fix for upload_status

        commit 89bb79b92d6cef9fb410259ee93ae7e11859239a
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 15:26:03 2023 +0100

            - upload_failed now taken into the account

        commit 3f9f3ea181ab267ee9c1f52b88a620c0620fa34b
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 13:35:25 2023 +0100

            Update package.json

            - just to trigger build action

        commit e6fbd6d213418dfd9708e206da341e8e37e776c3
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Tue Jan 10 11:54:17 2023 +0100

            Update package.json

            just to trigger build action

        commit 2d0a5257e2308d3b3241ec63a61ea5896981dc5e
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Fri Dec 23 13:01:20 2022 +0100

            - updated README.md

        commit 0a36ae5cc0f40aaab45ced9837e242308d17b578
        Merge: 6a7a0dda 782b84b5
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Tue Dec 20 18:11:19 2022 +0000

            Merge pull request #337 from m2ms/ms-2022-08-18-yellow-wo-970

            Animate to new orientation matrix first

        commit 5504bd464e1d699833f258b994e344cb339cb234
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Dec 20 08:06:06 2022 +0100

            Squashed commit of the following:

            commit cec398dcf0a14f7e433b2baec849e29001358839
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Dec 20 08:00:30 2022 +0100

                -

            commit 885f08e18f7983723a0944bd90cec646c869ee89
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Fri Dec 16 13:18:38 2022 +0100

                - bug fix in progress for #970

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 6fa2432f7226be0d54f7ce608719c0d59863d367
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:09:59 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 782b84b50f1d66742a3ed491b91d4ecf379b2edd
        Merge: eaa4ccbd f07779ce
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:49 2022 +0100

            Merge branch 'ms-2022-08-18-yellow-wo-970' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow-wo-970

        commit eaa4ccbdf4282a772a19badf68fc2c14579d9173
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 19 10:08:30 2022 +0100

            Squashed commit of the following:

            commit 553235691beedd110072226ff20b6b49a6aad1ee
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 19 10:06:41 2022 +0100

                - orient first then remove/add stuff

        commit 6a7a0dda77266978a5afdaf82a5e8f89f5aa0d4e
        Merge: 356e625e f07779ce
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Fri Dec 16 12:44:21 2022 +0000

            Merge pull request #334 from m2ms/ms-2022-08-18-yellow-wo-970

            Ms 2022 08 18 yellow wo 970

        commit f07779ce30667465ea1aba424085e8978827641a
        Merge: 57336b82 dcc2c882
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Fri Dec 16 13:24:09 2022 +0100

            Merge branch 'master' into ms-2022-08-18-yellow-wo-970

        commit 21b437e8dd24102aebe35302d8b1ef2d18c6c040
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 15 16:32:57 2022 +0100

            Squashed commit of the following:

            commit 006af71cdff9eff68f3dc7d03404fe265ff841b8
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 15 16:30:41 2022 +0100

                - now user can insert list of strings as an input for a job

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 2be8ed349ffdffa3602a2a393b4019bb3115ba5f
        Merge: 8ac386cd 57336b82
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:28:30 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8ac386cd710d9b6bf65cccac8d5962e6f6d730a5
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Dec 14 06:27:11 2022 +0100

            Squashed commit of the following:

            commit 15e97d0c57a2ab0c683077ea1f588db63645536f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Wed Dec 14 06:07:28 2022 +0100

                - initial implementation of #970

            commit 89010ea549ade47427b6454c3b92a37dff0c449b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:26:35 2022 +0100

                - #1001

        commit 57336b825cb95aecb3dfff78ab571bb85e906073
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Dec 8 11:41:44 2022 +0100

            Update package.json

            just to trigger action

        commit c6c3ed0b16414d528684d63befca6a01634683d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 11:57:33 2022 +0100

            Update package.json

            just to trigger action

        commit 614b01c80882557160777ba96abc92c2d328112e
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 09:38:38 2022 +0100

            Update package.json

            just to trigger action

        commit c0d2b3858d074b33303eef48e42f11e7eefac474
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:39:23 2022 +0100

            Update package.json

            just to trigger action

        commit bbf6f91e8498586d666204c3493405c4ca4e7268
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Wed Dec 7 08:31:30 2022 +0100

            Update package.json

            just to trigger rebuild

        commit 5edd5c4c387405b5f30ee88b19f1f2a2e91d8022
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Dec 5 08:28:17 2022 +0100

            Squashed commit of the following:

            commit 8d6edcb01a41b4abdddf86e94fe754682fb17964
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Dec 5 08:14:43 2022 +0100

                - #1001

        commit 8c52f55f808f5566f83e6068e3dbe76cf06860b0
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Dec 1 09:10:59 2022 +0100

            Squashed commit of the following:

            commit 91f3363f245ec336810dd27b9d34aaaa82512a8a
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Dec 1 09:08:03 2022 +0100

                - implemented #1012

        commit f8eb4067e0ece9d170e3405bebe21a689927442c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 29 10:24:56 2022 +0100

            Squashed commit of the following:

            commit a5b8f281ebd05cc6be2163fc7124855f6cee8418
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Tue Nov 29 10:22:31 2022 +0100

                - fixed #1013

            commit db173bcdd76574055d5132ec3cd34012a727656d
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 14:39:16 2022 +0100

                Squashed commit of the following:

                commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
                Merge: 8712fddb 87870aa1
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:40:54 2022 +0100

                    Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

                commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
                Author: Boris Kovar <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 13:39:15 2022 +0100

                    Squashed commit of the following:

                    commit cb3969273bde4d917b38c56485a05b1be23cf9cd
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 13:30:45 2022 +0100

                        - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

                    commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
                    Author: Boris Kovar <boris.kovar@m2ms.sk>
                    Date:   Mon Nov 28 08:16:31 2022 +0100

                        - #876 seems to be done

                commit 87870aa192d10344ae7eb384618ef137986862d0
                Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
                Date:   Mon Nov 28 09:36:12 2022 +0100

                    Update package.json

                    just to trigger build action

        commit c966f2e5a51059496bb8a653eedd54d781b7ec0a
        Merge: 8712fddb 87870aa1
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:40:54 2022 +0100

            Merge branch 'ms-2022-08-18-yellow' of https://github.com/m2ms/fragalysis-frontend into ms-2022-08-18-yellow

        commit 8712fddb5830de27c1c5568d3ce8e3c4a7318523
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 13:39:15 2022 +0100

            Squashed commit of the following:

            commit cb3969273bde4d917b38c56485a05b1be23cf9cd
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 13:30:45 2022 +0100

                - fixes for fast snapshot switching in ngl view after the dataset is deleted and compounds from dataset were used (i.e. were visible in some shape or form in the ngl view)

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 87870aa192d10344ae7eb384618ef137986862d0
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:36:12 2022 +0100

            Update package.json

            just to trigger build action

        commit 68d1a2fbd2be5620cca635c662dc0278dd578fcb
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 28 09:08:21 2022 +0100

            Squashed commit of the following:

            commit 0783429eaa6f18cf3c949c3f631d81e76edaa33c
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Nov 28 08:16:31 2022 +0100

                - #876 seems to be done

        commit 356e625e4a0d7cee6bf1bd3c3b1627b59375e88d
        Merge: 0530324b 7b7cbe99
        Author: rsanchezgarc <rubensanchezgarc@gmail.com>
        Date:   Mon Nov 14 09:59:45 2022 +0000

            Merge pull request #329 from m2ms/#977-ngl

            Fast switching between snapshots

        commit 7b7cbe99952000f6c550727e082cb920cafa144c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Tue Nov 8 10:04:33 2022 +0100

            - #977 - fixed issue with ngl settings were not saved and restored

        commit d1abaa872675f8a748f7c573aa74d79cdf629a0c
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Nov 7 10:14:18 2022 +0100

            Squashed commit of the following:

            commit 4a8a532f6ea217d2921ed5fab6b6705442ca682f
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Nov 3 08:01:05 2022 +0100

                - fixed ngl view was not tracked

        commit 0530324b9faae6876d0b42c48ac4b26a9eaf3c26
        Merge: 931a5aea 5746062a
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:51:39 2022 +0100

            Merge pull request #325 from xchem/production

            Action doc tweaks

        commit 5746062aacabb5201feefed8ea09e3e34066a175
        Merge: b0e75d17 dc2ff23d
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 15:50:50 2022 +0100

            Merge pull request #324 from alanbchristie/production

            Action doc tweaks

        commit dc2ff23d773157c74f864931e06ccb0fd21cf335
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:48:48 2022 +0100

            Add doc for production workflow

        commit c5ee4068a880a85d4fc5ed164dbbd711e4c5d0ec
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 15:35:27 2022 +0100

            Tweak action docs

        commit 931a5aea583997a80bab66d8099f743529f8d98f
        Merge: cb4246e7 b0e75d17
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:51:21 2022 +0100

            Merge pull request #323 from xchem/production

            Production now triggers stack

        commit b0e75d174217c507b2db2f4d6329e4ed2315e887
        Merge: cb4246e7 ac3297e4
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 12:50:08 2022 +0100

            Merge pull request #322 from alanbchristie/production

            Production now triggers stack

        commit ac3297e47b5ce9ca5a9ca1386818a317bc8098f2
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 12:49:11 2022 +0100

            Production now triggers stack

            Fix for BE tag

        commit cb4246e7f7acde133a4ca2081c30115dd5c87f56
        Merge: dcc2c882 dec6f785
        Author: Alan B. Christie <29806285+alanbchristie@users.noreply.github.com>
        Date:   Thu Oct 27 11:15:06 2022 +0100

            Merge pull request #321 from alanbchristie/production

            CI changes for new branch policy

        commit dec6f785663f6e3050262c5a4b4704109d2e446a
        Author: Alan Christie <alan.christie@matildapeak.com>
        Date:   Thu Oct 27 10:58:08 2022 +0100

            Removed personal repo references

        commit 2147aa18af1211a32f55e228c1023491008204ac
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Wed Oct 26 10:00:07 2022 +0200

            - updated squonk project id for dev stacks

        commit b2bc6e79197baa4c7336822fca2bfbf54eded377
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Mon Oct 24 16:47:24 2022 +0200

            - first real version of the final implementation of ticket #977
            - also added functionality that only if user did something with the snapshot, only then user will be prompted if new snapshot (or current overridden) should be saved or not - note: in this current version undoing an action does not undo the 'dirty' status of the snapshot

        commit 204a86d7f8901b9d39cf6495e625c709d82a8c72
        Author: Boris Kovar <boris.kovar@m2ms.sk>
        Date:   Thu Oct 20 07:32:33 2022 +0200

            - nearly complete issue #977

        commit dcc2c8824378b69e118564a664b332456d5632e4
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:48:42 2022 +0200

            edited in correct squonk project id

        commit 725f6d5267d568afd34f29f22b0869458d759832
        Author: boriskovar-m2ms <boris.kovar@m2ms.sk>
        Date:   Thu Sep 29 12:47:31 2022 +0200

            removed Upload button from Job popup (#320)

            * - initial commit

            * - checkpoint

            * - new backend

            * Update package.json

            bumped version to 0.10.109

            * Update package.json

            bumped version to 0.10.111

            * Update package.json

            version bumped to 0.10.112

            * Update package.json

            bumped version to 0.10.113

            * Update package.json

            bumped version to 0.10.114

            * Update package.json

            bumped version to 0.10.115

            * - added new back-end

            * Squashed commit of the following:

            commit 949573bd930afaa0171a728f05dafa08c2425341
            Merge: deb0d1c3 74ea6613
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jul 14 06:56:52 2022 +0200

                Merge branch '#885-bugfix' of https://github.com/m2ms/fragalysis-frontend into #885-bugfix

            commit deb0d1c31aa68fb38c1d1541aca6bd81410e515b
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Thu Jun 9 10:21:43 2022 +0200

                - mics changes

            commit e2a00641039dd34b348ce2084eefd8f33ae04343
            Author: Boris Kovar <boris.kovar@m2ms.sk>
            Date:   Mon Jun 6 06:05:49 2022 +0200

                Squashed commit of the following:

                -bumped version to 0.10.93

                commit dfa24f68c4cb0e84ad37ac663ec08caadd2f3fbb
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:53:32 2022 +0200

                    #883 - Remove unused selection action

                commit 0ae63081e822a514443a7b6c6e1fb3826a8c6178
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:43:17 2022 +0200

                    #883 - Remove countOfPendingVectorLoadRequests from selectionReducers with unused hook

                commit b884e0b59c5e9000422adbf6e6adf7b14847b51f
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 11:10:44 2022 +0200

                    #883 - Remove associatedDownloadTagName from selectionReducers

                commit ab825ccf3369af8fbaab9c8d25d68c5a1699d773
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:54:57 2022 +0200

                    #883 - Remove displayedMoleculesInHitNav from selectionReducers

                commit 4103e3984bc9b3fbf2cc48bef3b9d65864a4814b
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 10:08:28 2022 +0200

                    #883 - Remove displayAllInNGLList from selectionReducers

                commit f3b3b10a879447705b2709b88d48b62fe50e14cc
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:59:23 2022 +0200

                    #883 - Remove listAllList from selectionReducers

                commit 02aa5955918abace2d5473e89bb9260ff10d7338
                Author: Anton Gasperak <anton.gasperak@m2ms.sk>
                Date:   Wed Jun 1 09:40:29 2022 +0200

                    #883 - Move categoryList from selectionReducers to apiReducers

                commit d059ee8d4de0ddc34be64ef9c55a71c4f2bd96df
                Author: Anton Gasperak <anton.gaspe…
@mwinokan mwinokan moved this to In production (Done) in Fragalysis May 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

No branches or pull requests

3 participants