Skip to content

Commit

Permalink
fix: redirect omni feedback to omni repo
Browse files Browse the repository at this point in the history
Now that `omni` repo is public we can use it.

Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
smira committed Feb 29, 2024
1 parent dfcbaae commit 3c3e348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/THeader/THeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ included in the LICENSE file.
<t-icon class="t-header-nav-icon" icon="info" />
<span class="t-header-nav-name">Documentation</span>
</a>
<a href="https://github.com/siderolabs/omni-feedback/issues" target="_blank" class="flex hover:text-naturals-N14">
<a href="https://github.com/siderolabs/omni/issues" target="_blank" class="flex hover:text-naturals-N14">
<t-icon class="t-header-nav-icon" icon="check-in-circle" />
<span class="t-header-nav-name">Report an issue</span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/methods/key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ const registerInterceptors = () => {
} else if (url.indexOf("/image/") == 0) {
config.headers.set(TimestampHeaderKey, ts);

const sha256 = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855";
const sha256 = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"; // empty string sha256
const payload = [config.method ?? "GET", url, ts, sha256].join("\n");
const signature = await signDetached(payload);
const fingerprint = keys?.publicKey.getFingerprint();
Expand Down

0 comments on commit 3c3e348

Please sign in to comment.