From dac773fc78fd422fd435806477a53fbf50615eb9 Mon Sep 17 00:00:00 2001 From: paf <paf@titelfrei.de> Date: Mon, 12 Apr 2021 09:32:15 +0200 Subject: [PATCH] changes back the the click-selection-order: first click on a block selects the test only, seconds selects all tests of the same species. Why? To select all at first was an idea to make it easier for popele who don't understand that they have to select tests. But those are covered by the selectAll-Testmode now. So we can return to the previous behaviour which we consider to be more intuitive. --- src/app/group-monitor/test-view/test-view.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/group-monitor/test-view/test-view.component.ts b/src/app/group-monitor/test-view/test-view.component.ts index 67410639..9889bb36 100644 --- a/src/app/group-monitor/test-view/test-view.component.ts +++ b/src/app/group-monitor/test-view/test-view.component.ts @@ -102,7 +102,7 @@ export class TestViewComponent { return { element: testletOrNull, originSession: this.testSession, - spreading: this.isSelected(testletOrNull) ? !(this.selected?.spreading) : !!testletOrNull, + spreading: this.isSelected(testletOrNull) ? !(this.selected?.spreading) : !testletOrNull, inversion }; } -- GitLab