mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-07 05:34:55 +08:00
11 lines
157 B
Ruby
11 lines
157 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FormSingleChoiceFieldValue < FormFieldValue
|
|
def value=(val)
|
|
self.text = val
|
|
end
|
|
|
|
def value
|
|
text
|
|
end
|
|
end
|