web/satellite: access grant CLI step copy token fix

WHAT:
copy button now copies restricted key instead of regular

WHY:
bug fix

Change-Id: I6696dfa4b5d804a64a6d7b49aa443ba16043e466
This commit is contained in:
VitaliiShpital 2020-12-18 16:22:07 +02:00
parent e1456bc53f
commit f645654d2e

View File

@ -85,7 +85,7 @@ export default class CLIStep extends Vue {
* Copies token to clipboard.
*/
public onCopyClick(): void {
this.$copyText(this.key);
this.$copyText(this.restrictedKey);
this.$notify.success('Token was copied successfully');
}