summaryrefslogtreecommitdiff
path: root/sw-ui/src/main
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-02-20 13:15:59 +0100
committerJoffrey Bion <joffrey.bion@gmail.com>2021-02-20 13:22:04 +0100
commitd0b828a4fd8eb40760864bd8e9b95a6a5114f302 (patch)
tree84423c74eb2057ffcf6ed25b4005d831049fb1e2 /sw-ui/src/main
parentUse .let for non-ideal-state props (diff)
downloadseven-wonders-d0b828a4fd8eb40760864bd8e9b95a6a5114f302.tar.gz
seven-wonders-d0b828a4fd8eb40760864bd8e9b95a6a5114f302.tar.bz2
seven-wonders-d0b828a4fd8eb40760864bd8e9b95a6a5114f302.zip
Make BpHtmlTable props extend IProps to have classNames
Diffstat (limited to 'sw-ui/src/main')
-rw-r--r--sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt b/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt
index a8d45145..b39aa98c 100644
--- a/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt
+++ b/sw-ui/src/main/kotlin/com/palantir/blueprintjs/BpHtmlTable.kt
@@ -3,11 +3,11 @@
package com.palantir.blueprintjs
import react.PureComponent
-import react.RProps
import react.RState
import react.ReactElement
-external interface IHTMLTableProps : RProps {
+// in BlueprintJS, IHTMLTableProps doesn't extend IProps, and yet className works fine...
+external interface IHTMLTableProps : IProps {
var bordered: Boolean?
get() = definedExternally
set(value) = definedExternally
bgstack15