Add Boards management to sitesettings (#107)

This commit is contained in:
Riccardo Graziosi
2022-05-08 16:36:35 +02:00
committed by GitHub
parent 7b8a4d6709
commit 6be2394dc5
44 changed files with 1464 additions and 112 deletions

View File

@@ -89,7 +89,7 @@ class PostStatusForm extends React.Component<Props, State> {
<div className="postStatusForm">
<input
type="text"
placeholder="Name"
placeholder="Post status name"
value={name}
onChange={e => this.onNameChange(e.target.value)}
className="form-control"
@@ -99,7 +99,7 @@ class PostStatusForm extends React.Component<Props, State> {
type="color"
value={color}
onChange={e => this.onColorChange(e.target.value)}
className="form-control"
className="form-control postStatusColorInput"
/>
<Button

View File

@@ -92,7 +92,7 @@ class PostStatusesSiteSettingsP extends React.Component<Props> {
<DragDropContext onDragEnd={this.handleDragEnd}>
<Droppable droppableId="postStatuses">
{provided => (
<ul ref={provided.innerRef} {...provided.droppableProps} className="postStatusList">
<ul ref={provided.innerRef} {...provided.droppableProps} className="postStatusesList">
{postStatuses.items.map((postStatus, i) => (
<PostStatusEditable
id={postStatus.id}