fix some eslint errors

This commit is contained in:
HF 2022-08-05 22:56:02 +02:00
parent 86d773c3f0
commit 2b82971ceb
6 changed files with 27 additions and 31 deletions

View File

@ -85,17 +85,9 @@ function Admintools() {
return (
<div style={{ textAlign: 'center', paddingLeft: '5%', paddingRight: '5%' }}>
{resp && (
<div style={{
borderStyle: 'solid',
borderColor: '#D4D4D4',
userSelect: 'text',
borderWidth: 2,
padding: 5,
display: 'inline-block',
}}
>
<div className="respbox">
{resp.split('\n').map((line) => (
<p className="modaltext">
<p key={line.slice(0, 3)} className="modaltext">
{line}
</p>
))}

View File

@ -217,16 +217,9 @@ function ModCanvastools() {
return (
<div style={{ textAlign: 'center', paddingLeft: '5%', paddingRight: '5%' }}>
{resp && (
<div style={{
borderStyle: 'solid',
borderColor: '#D4D4D4',
borderWidth: 2,
padding: 5,
display: 'inline-block',
}}
>
<div className="respbox">
{resp.split('\n').map((line) => (
<p className="modaltext">
<p key={line.slice(0, 3)} className="modaltext">
{line}
</p>
))}

View File

@ -14,6 +14,10 @@ async function submitIIDAction(
duration,
callback,
) {
if (!iid) {
callback(t`You must enter an IID`);
return;
}
const time = Date.now() + parseInterval(duration);
const data = new FormData();
data.append('iidaction', action);
@ -60,14 +64,13 @@ function ModIIDtools() {
<>
<p>{t`Reason`}</p>
<input
maxLength="200"
style={{
width: '100%',
}}
value={reason}
placeholder={t`Enter Reason`}
onChange={(evt) => {
setReason(evt.target.value.trim());
}}
onChange={(evt) => setReason(evt.target.value)}
/>
<p>
{`${t`Duration`}: `}

View File

@ -96,16 +96,9 @@ function ModWatchtools() {
return (
<div style={{ textAlign: 'center', paddingLeft: '5%', paddingRight: '5%' }}>
{resp && (
<div style={{
borderStyle: 'solid',
borderColor: '#D4D4D4',
borderWidth: 2,
padding: 5,
display: 'inline-block',
}}
>
<div className="respbox">
{resp.split('\n').map((line) => (
<p className="modaltext">
<p key={line.slice(0, 3)} className="modaltext">
{line}
</p>
))}

View File

@ -33,6 +33,12 @@ const Ban = sequelize.define('Blacklist', {
}, {
timestamps: true,
updatedAt: false,
setterMethods: {
reason(value) {
this.setDataValue('reason', value.slice(0, 200));
},
},
});

View File

@ -959,6 +959,15 @@ tr:nth-child(even) {
position: absolute;
}
.respbox {
border-style: solid;
border-color: #D4D4D4;
user-select: text;
border-width: 2px;
padding: 5px;
display: inline-block;
}
/*-----------*/
/* react-toggle css */