Skip to content

Commit 54535be

Browse files
author
Tim Shawver
committed
Some css changes to avoid js console errors about not being able to load various images.
1 parent 15a496a commit 54535be

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

js/src/qgrid.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@
186186
border-right: none;
187187
}
188188

189-
.q-grid .slick-header-columns {
189+
.q-grid .slick-header-columns,
190+
.text-filter-grid .slick-header-columns {
190191
background: none;
191192
background-color: rgb(245, 245, 245);
192193
border-bottom: none;
@@ -654,6 +655,7 @@
654655
text-indent: 0px;
655656
margin-left: -4px;
656657
margin-top: -6px;
658+
background-image: none;
657659
}
658660

659661
#ui-datepicker-div.ui-datepicker .ui-icon-circle-triangle-w:before {

qgrid/tests/test_grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def test_add_row():
152152
# expected values
153153
added_index = event_history[0]['index']
154154
expected_values = np.array(
155-
[4, 1.0, 1.0, 3, pd.Timestamp('2013-01-02 00:00:00'), 'bar', 'fox'],
155+
[4, 1.0, pd.Timestamp('2013-01-02 00:00:00'), 1.0, 3, 'bar', 'fox'],
156156
dtype=object
157157
)
158158
assert (widget._df.loc[added_index].values == expected_values).all()

0 commit comments

Comments
 (0)