diff --git a/packages/code-studio/public/index.html b/packages/code-studio/public/index.html index 88d152d7b3..b62bdbe07a 100644 --- a/packages/code-studio/public/index.html +++ b/packages/code-studio/public/index.html @@ -37,6 +37,28 @@ src="%REACT_APP_CORE_API_URL%/%REACT_APP_CORE_API_NAME%" type="text/javascript" > + Deephaven diff --git a/packages/components/scss/new_variables.scss b/packages/components/scss/new_variables.scss index 974af8e1ac..65f8733803 100644 --- a/packages/components/scss/new_variables.scss +++ b/packages/components/scss/new_variables.scss @@ -6,7 +6,7 @@ $spacer-3: map-get($spacers, 3); $spacer-4: map-get($spacers, 4); $spacer-5: map-get($spacers, 5); -/* Marching Ants for golden layout dropzone and drag and drop */ +//Marching Ants for golden layout dropzone and drag and drop //top bottom, left right. //create 4 background images that are 50% color 1, 50% color 2 using graidents, two veritical, two horizontal //size them to ant-size and thickness diff --git a/packages/iris-grid/src/AdvancedFilterCreatorSelectValueList.jsx b/packages/iris-grid/src/AdvancedFilterCreatorSelectValueList.jsx index 2a7826c44e..ba45f85289 100644 --- a/packages/iris-grid/src/AdvancedFilterCreatorSelectValueList.jsx +++ b/packages/iris-grid/src/AdvancedFilterCreatorSelectValueList.jsx @@ -2,7 +2,7 @@ import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import { CSSTransition } from 'react-transition-group'; -import dh from '@deephaven/jsapi-shim'; +import dh, { PropTypes as APIPropTypes } from '@deephaven/jsapi-shim'; import { LoadingSpinner, SelectValueList } from '@deephaven/components'; import Log from '@deephaven/log'; import Formatter from './Formatter'; @@ -271,8 +271,7 @@ AdvancedFilterCreatorSelectValueList.propTypes = { invertSelection: PropTypes.bool, selectedValues: PropTypes.arrayOf(PropTypes.any), onChange: PropTypes.func, - filters: PropTypes.arrayOf(PropTypes.instanceOf(dh.FilterCondition)) - .isRequired, + filters: PropTypes.arrayOf(APIPropTypes.FilterCondition).isRequired, formatter: PropTypes.instanceOf(Formatter).isRequired, };