mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-08 14:15:35 +08:00
11 lines
149 B
Ruby
11 lines
149 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FormTextFieldValue < FormFieldValue
|
|
def value=(val)
|
|
self.text = val
|
|
end
|
|
|
|
def value
|
|
text
|
|
end
|
|
end
|