From 889cc0c570f913c019bfcfff66b6df7d7a002596 Mon Sep 17 00:00:00 2001 From: asulis Date: Mon, 11 Sep 2023 15:08:28 +0200 Subject: [PATCH 01/34] feat: Removes Abandon button from the list --- src/components/NegotiationList.vue | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/components/NegotiationList.vue b/src/components/NegotiationList.vue index 08ea987..9816b86 100644 --- a/src/components/NegotiationList.vue +++ b/src/components/NegotiationList.vue @@ -43,7 +43,6 @@ > {{ field }} - @@ -66,20 +65,6 @@ {{ item.status }} - - - @@ -89,12 +74,10 @@ @@ -146,4 +209,16 @@ export default { .negotiation-list-table tbody tr:hover > td { cursor: pointer; } +.arrow.asc { + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #000402; +} + +.arrow.dsc { + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-top: 10px solid #000000; +} + \ No newline at end of file From 1220a16dd94b0a85fcceac2a63cfa41cbf2ec0a9 Mon Sep 17 00:00:00 2001 From: asulis Date: Wed, 13 Sep 2023 17:10:46 +0200 Subject: [PATCH 03/34] fix: Adds a button in top of a Negotiationdetails page, to go back to Negotiations list --- src/views/NegotiationPage.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/views/NegotiationPage.vue b/src/views/NegotiationPage.vue index 44d0b7f..1c3c858 100644 --- a/src/views/NegotiationPage.vue +++ b/src/views/NegotiationPage.vue @@ -6,13 +6,22 @@ +