From c9f188f399bf4f5e17cbe9a3cb12453c15ea4e24 Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Mon, 6 Jan 2025 15:53:44 +0530 Subject: [PATCH 1/2] fix: vue data state reset issue --- vue/src/models/rop_store.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vue/src/models/rop_store.js b/vue/src/models/rop_store.js index 074aa43c..a8226267 100644 --- a/vue/src/models/rop_store.js +++ b/vue/src/models/rop_store.js @@ -219,6 +219,9 @@ export default new Vuex.Store({ case 'get_active_accounts': case 'update_active_accounts': case 'remove_account': + if ( 'remove_account' === requestName ) { + break; + } state.activeAccounts = stateData break case 'get_taxonomies': From a4357537009ad0d7dfcc3bc32bbdaa13b8054603 Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Mon, 6 Jan 2025 15:59:40 +0530 Subject: [PATCH 2/2] bump: ubuntu version --- .github/workflows/test-php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-php.yml b/.github/workflows/test-php.yml index a0e28569..cb2f06ea 100644 --- a/.github/workflows/test-php.yml +++ b/.github/workflows/test-php.yml @@ -42,7 +42,7 @@ jobs: php-unit: name: PHPUnit needs: code-sniff - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 services: mysql: image: mysql:5.7