Github user arina-ielchiieva commented on a diff in the pull request: https://github.com/apache/drill/pull/1021#discussion_r148860361 --- Diff: exec/java-exec/src/main/resources/rest/profile/profile.ftl --- @@ -135,6 +135,8 @@ table.sortable thead .sorting_desc { background-image: url("/static/img/black-de <#assign queueName = model.getProfile().getQueueName() /> <#assign queued = queueName != "" && queueName != "-" /> + <#assign queryStateDisplayName = ["Starting", "Running", "Succeeded", "Canceled", "Failed", --- End diff -- Why do we have need duplicated state display name array here and in `ProfileResources.java`. Is there a possibility to not duplicate it?
---