bar graph fix
This commit is contained in:
parent
43318fb8cd
commit
8c3d749197
15 changed files with 973 additions and 401 deletions
|
|
@ -1,5 +1,6 @@
|
|||
"use client";
|
||||
import { useState } from "react";
|
||||
import HelpTooltip from "../components/HelpTooltip";
|
||||
|
||||
function b64uToBuf(b64u: string): ArrayBuffer {
|
||||
const b64 = b64u.replace(/-/g, "+").replace(/_/g, "/");
|
||||
|
|
@ -187,6 +188,7 @@ export default function EnrollPage() {
|
|||
)}
|
||||
|
||||
{/* Submit */}
|
||||
<HelpTooltip text="Register your YubiKey as an authentication device for this account." block>
|
||||
<button
|
||||
type="submit"
|
||||
disabled={busy}
|
||||
|
|
@ -202,6 +204,7 @@ export default function EnrollPage() {
|
|||
{status === "waiting_yubikey" && "Touch YubiKey…"}
|
||||
{status === "saving" && "Saving…"}
|
||||
</button>
|
||||
</HelpTooltip>
|
||||
</form>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue