Skip to content

Commit 2aea3fe

Browse files
committed
Fix tailwind and add list method to the admin tokens
1 parent 27abcc7 commit 2aea3fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/secret/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl SecretString {
8989
return result[..5].to_string();
9090
};
9191

92-
result.replace_range((underscore_index + 3)..(result.len() - 4), "...");
92+
result.replace_range((underscore_index + 5)..(result.len() - 4), "...");
9393
result
9494
}
9595
}

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3-
content: ["./src/pages/*.rs", "./crates/**/src/pages/*.rs"],
3+
content: ["./src/pages/*.rs", "./crates/*/src/pages/*.rs"],
44
theme: {
55
extend: {},
66
},

0 commit comments

Comments
 (0)