Skip to content

Commit 29d19e4

Browse files
committed
chore: turn reverting data classes
1 parent f60ac1f commit 29d19e4

File tree

1 file changed

+4
-12
lines changed
  • plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat

1 file changed

+4
-12
lines changed

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat/Conversations.kt

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,11 @@ data class TextBasedFilterOption(
1818
)
1919

2020
data class FilterOption(
21-
val id: String? = null,
22-
val placeholder: String? = null,
23-
val title: String? = null,
24-
val description: String? = null,
25-
val icon: IconType? = null,
21+
val id: String,
2622
val type: String? = null,
27-
val options: List<Option>? = null,
28-
) {
29-
data class Option(
30-
val value: String? = null,
31-
val label: String? = null,
32-
)
33-
}
23+
val placeholder: String?,
24+
val icon: IconType?,
25+
)
3426

3527
data class Action(
3628
val id: String,

0 commit comments

Comments
 (0)