Merge pull request #22 from roflmaoqwerty/fix-flags
Converted all remaining boolean parameters to flags
This commit is contained in:
commit
65816337a0
3 changed files with 3 additions and 3 deletions
|
@ -417,7 +417,7 @@ export class PostPlugin extends ZeppelinPlugin<TConfigSchema> {
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: "enable-mentions",
|
name: "enable-mentions",
|
||||||
type: "bool",
|
isSwitch: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "schedule",
|
name: "schedule",
|
||||||
|
|
|
@ -212,7 +212,7 @@ export class SlowmodePlugin extends ZeppelinPlugin<TConfigSchema> {
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: "force",
|
name: "force",
|
||||||
type: "bool",
|
isSwitch: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
|
@ -191,7 +191,7 @@ export class UtilityPlugin extends ZeppelinPlugin<TConfigSchema> {
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: "counts",
|
name: "counts",
|
||||||
type: "bool",
|
isSwitch: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "sort",
|
name: "sort",
|
||||||
|
|
Loading…
Add table
Reference in a new issue