mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-08-05 14:50:11 +00:00
feat: update backup recommendations UI; enhance styles and structure for better user experience
This commit is contained in:
@@ -109,7 +109,13 @@ function WebsiteRow(props: WebsiteRowProps) {
|
||||
))}
|
||||
</select>
|
||||
{props.canRemove && (
|
||||
<button type="button" className="btn btn-secondary small" onClick={() => props.onRemove(props.index)}>
|
||||
<button
|
||||
type="button"
|
||||
className="btn btn-secondary small website-remove-btn"
|
||||
title={t('txt_remove')}
|
||||
aria-label={t('txt_remove')}
|
||||
onClick={() => props.onRemove(props.index)}
|
||||
>
|
||||
<X size={14} className="btn-icon" />
|
||||
{t('txt_remove')}
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user