Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Responsive layout: Table column delete gives error#512

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -277,7 +277,8 @@ class ResponsiveLayoutImplComp extends ResponsiveLayoutBaseComp implements ICont
},
}asCompAction;
}
if(value.type==="delete"&&columns.length<=1){
const{ path}=action;
if(value.type==="delete"&&path[0]==='columns'&&columns.length<=1){
messageInstance.warning(trans("responsiveLayout.atLeastOneColumnError"));
// at least one column
returnthis;
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -176,39 +176,6 @@ function CreateModal(props: CreateModalProp) {
</div>
);
})}
{/* <Form.Item
name="clientId"
label="Client ID"
rules={[{ required: true }]}
>
<Input
placeholder={trans("idSource.formPlaceholder", {
label: 'Client ID',
})}
autoComplete="off"
/>
</Form.Item>
<Form.Item
name="clientSecret"
label={
<PasswordLabel>
<span>{"Client secret"}:</span>
<CloseEyeIcon />
</PasswordLabel>
}
rules={[{
required: true,
message: trans("idSource.formPlaceholder", {
label: 'Client secret',
})
}]}
>
<Input
type="password"
placeholder={trans("idSource.encryptedServer")}
autoComplete="off"
/>
</Form.Item> */}
</FormStyled>
</CustomModalStyled>
);
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp