Skip to content

Commit

Permalink
Merge pull request #212 from catenax-ng/bugfix/cmp-1008/qrcode-back-btn
Browse files Browse the repository at this point in the history
Bugfix/cmp-1008/qrcode-back-btn
  • Loading branch information
davidzynda authored Jan 17, 2024
2 parents 7bde4d9 + b8e9f30 commit d9de32b
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 d9de32b

Please sign in to comment.