File tree 1 file changed +6
-4
lines changed
components/dashboard/src/admin 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ export function BlockedRepositoriesList(props: Props) {
135
135
</ div >
136
136
< input
137
137
type = "search"
138
- placeholder = "Search by URL Regex "
138
+ placeholder = "Search by URL RegEx "
139
139
onKeyDown = { ( ke ) => ke . key === "Enter" && search ( ) }
140
140
onChange = { ( v ) => {
141
141
setQueryTerm ( v . target . value . trim ( ) ) ;
@@ -148,8 +148,10 @@ export function BlockedRepositoriesList(props: Props) {
148
148
</ div >
149
149
</ div >
150
150
151
- < Alert type = { "info" } closable = { false } showIcon = { true } className = "flex rounded p-2 w-2/3 mb-2 w-full" >
152
- < span > Search entries by their Repositoriy URL regular expression (RegEx).</ span >
151
+ < Alert type = { "info" } closable = { false } showIcon = { true } className = "flex rounded p-2 mb-2 w-full" >
152
+ < span >
153
+ Search entries by their repository URL < abbr title = "regular expression" > RegEx</ abbr > .
154
+ </ span >
153
155
</ Alert >
154
156
< div className = "flex flex-col space-y-2" >
155
157
< div className = "px-6 py-3 flex justify-between text-sm text-gray-400 border-t border-b border-gray-200 dark:border-gray-800 mb-2" >
@@ -211,7 +213,7 @@ function AddBlockedRepositoryModal(p: AddBlockedRepositoryModalProps) {
211
213
setError ( "" ) ;
212
214
} , [ p . blockedRepository ] ) ;
213
215
214
- let save = ( ) : boolean => {
216
+ const save = ( ) : boolean => {
215
217
const v = ref . current ;
216
218
const newError = p . validate ( v ) ;
217
219
if ( ! ! newError ) {
You can’t perform that action at this time.
0 commit comments