# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: class MonthField < DatetimeField # :nodoc: private def format_date(value) value&.strftime("%Y-%m") end end end end end