fix(css): rename form-input to form-input-area (#2613)

This commit is contained in:
TheCatLady
2022-03-14 03:24:39 -04:00
committed by GitHub
parent 1f964b576a
commit 086f0b6ce2
29 changed files with 130 additions and 130 deletions

View File

@@ -160,7 +160,7 @@ const NotificationsGotify: React.FC = () => {
{intl.formatMessage(messages.agentenabled)}
<span className="label-required">*</span>
</label>
<div className="form-input">
<div className="form-input-area">
<Field type="checkbox" id="enabled" name="enabled" />
</div>
</div>
@@ -169,7 +169,7 @@ const NotificationsGotify: React.FC = () => {
{intl.formatMessage(messages.url)}
<span className="label-required">*</span>
</label>
<div className="form-input">
<div className="form-input-area">
<div className="form-input-field">
<Field id="url" name="url" type="text" />
</div>
@@ -183,7 +183,7 @@ const NotificationsGotify: React.FC = () => {
{intl.formatMessage(messages.token)}
<span className="label-required">*</span>
</label>
<div className="form-input">
<div className="form-input-area">
<div className="form-input-field">
<Field id="token" name="token" type="text" />
</div>