Skip to content

Commit

Permalink
Fix failing spec
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-ioki committed Jul 9, 2024
1 parent 6eef00f commit 18c6252
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/ioki/model/operator/area.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,27 +55,27 @@ class Area < Base
type: :integer

attribute :fill_color,
on: [:create, :read, :upate],
on: [:create, :read, :update],
omit_if_nil_on: [:create, :update],
type: :string

attribute :fill_opacity,
on: [:create, :read, :upate],
on: [:create, :read, :update],
omit_if_nil_on: [:create, :update],
type: :float

attribute :invert,
on: [:create, :read, :upate],
on: [:create, :read, :update],
omit_if_nil_on: [:create, :update],
type: :boolean

attribute :z_index,
on: [:create, :read, :upate],
on: [:create, :read, :update],
omit_if_nil_on: [:create, :update],
type: :integer

attribute :legend_index,
on: [:create, :read, :upate],
on: [:create, :read, :update],
omit_if_nil_on: [:create, :update],
type: :integer

Expand Down

0 comments on commit 18c6252

Please sign in to comment.