Skip to content

Commit

Permalink
Merge pull request #179 from catenax-ng/Release/v2.1.0-qrcode-back-btn
Browse files Browse the repository at this point in the history
[ 6° ] - Release/v2.1.0 qrcode back btn
  • Loading branch information
saudkhan116 authored Feb 2, 2024
2 parents 6e45e90 + d9de32b commit 63cca6a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/views/SearchView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@
</div>
</div>
<div class="right-container">
<v-icon
@click="showWelcome"
size="large"
:class="{ hidden: !isHidden }"
class="arrow-icon"
icon="mdi-arrow-left"
></v-icon>
<div class="inner-right-container">
<div class="logotype-container">
<img :src="LogotypeDPP" alt="DPP logo" />
Expand Down Expand Up @@ -168,6 +175,10 @@ export default {
console.error("Error checking camera permission:", error);
}
},
showWelcome() {
this.isHidden = false;
this.QRtoggle = false;
},
hideWelcome() {
this.isHidden = true;
this.QRtoggle = true;
Expand Down

0 comments on commit 63cca6a

Please sign in to comment.