We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27abcc7 commit 2aea3feCopy full SHA for 2aea3fe
2 files changed
src/secret/mod.rs
@@ -89,7 +89,7 @@ impl SecretString {
89
return result[..5].to_string();
90
};
91
92
- result.replace_range((underscore_index + 3)..(result.len() - 4), "...");
+ result.replace_range((underscore_index + 5)..(result.len() - 4), "...");
93
result
94
}
95
tailwind.config.js
@@ -1,6 +1,6 @@
1
/** @type {import('tailwindcss').Config} */
2
module.exports = {
3
- content: ["./src/pages/*.rs", "./crates/**/src/pages/*.rs"],
+ content: ["./src/pages/*.rs", "./crates/*/src/pages/*.rs"],
4
theme: {
5
extend: {},
6
},
0 commit comments