goblin-desktop 2.0.21 → 2.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goblin-desktop",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "Goblin Desktop",
5
5
  "main": "./builders/builders.js",
6
6
  "scripts": {
@@ -89,7 +89,11 @@ class WizardButtons extends Widget {
89
89
  let index = 0;
90
90
  const size = this.props.buttons.size;
91
91
  return (
92
- <Container kind={this.props.containerKind} busy={this.props.busy}>
92
+ <Container
93
+ kind={this.props.containerKind}
94
+ busy={this.props.busy}
95
+ busyLook="very-small"
96
+ >
93
97
  {this.props.buttons
94
98
  .entrySeq()
95
99
  .map(([id, button]) => this.renderButton(button, id, index++, size))