-
-
Notifications
You must be signed in to change notification settings - Fork 588
Open
Labels
Description
Bug description
Depending on whether the option keys are strings of characters or numbers, the select fieldtype will show different behaviour when viewing form submissions. If the key is a number, it will show the key. If it is a string of characters, it will show the label.

Is there any way to control which one to display? The number example is taken from a form that is used on one of our sites and is used to post to a CRM - those keys are some of its IDs so we can't actually change these.
How to reproduce
Create a form with the following blueprint:
tabs:
main:
display: Main
sections:
-
fields:
-
handle: test_number_keys
field:
options:
-
key: 926450000
value: 'test 1-9'
-
key: 926450001
value: 'test 10-49'
-
key: 926450002
value: 'test 50-249'
-
key: 926450003
value: 'test 250-999'
-
key: 926450004
value: 'test 1000-4999'
-
key: 926450005
value: 'test 5000+'
type: select
display: 'Test number keys'
-
handle: test_string_keys
field:
options:
-
key: Eggs
value: 'Eggs label'
-
key: Beans
value: 'Beans label'
-
key: Bacon
value: 'Bacon label'
type: select
display: 'Test string keys'
Load the form in a page with the form tag, submit it, check the submission.
Logs
Environment
Environment
Application Name: Statamic
Laravel Version: 12.32.5
PHP Version: 8.3.22
Composer Version: 2.8.9
Environment: local-db
Debug Mode: ENABLED
URL: localhost
Maintenance Mode: OFF
Timezone: UTC
Locale: en
Cache
Config: NOT CACHED
Events: NOT CACHED
Routes: NOT CACHED
Views: CACHED
Drivers
Broadcasting: log
Cache: file
Database: mysql
Logs: stack / single
Mail: log
Queue: sync
Session: file
Storage
public/storage: NOT LINKED
Statamic
Addons: 7
Sites: 1
Stache Watcher: Disabled (auto)
Static Caching: Disabled
Version: 5.65.2 PRO
Statamic Addons
anakadote/statamic-recaptcha: 2.0
eminos/statamic-tabs: 1.2.0
jezzdk/statamic-google-maps: 2.1.0
patrickjunod/image-select: 1.0.0
rias/statamic-redirect: 3.12.0
statamic/eloquent-driver: 4.32.0
withcandour/aardvark-seo: 5.0.5
Statamic Eloquent Driver
Asset Containers: file
Assets: file
Blueprints: file
Collection Trees: file
Collections: file
Entries: eloquent
Fieldsets: file
Form Submissions: file
Forms: file
Global Sets: file
Global Variables: file
Navigation Trees: file
Navigations: file
Revisions: file
Sites: file
Taxonomies: file
Terms: eloquent
Tokens: file
Installation
Fresh statamic/statamic site via CLI
Additional details
No response