We're restructuring the CSS of the admin stylesheet, and there was a rule that is only applied to this component.
8 lines
151 B
Ruby
8 lines
151 B
Ruby
class Management::Account::EditPasswordManuallyComponent < ApplicationComponent
|
|
attr_reader :user
|
|
|
|
def initialize(user)
|
|
@user = user
|
|
end
|
|
end
|