Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/actions/install-deps/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,16 @@ runs:
targets: aarch64-unknown-linux-gnu
components: rust-src

# Did you see a CI error of the form:
#
# error: failed to install component: 'clippy-preview-aarch64-unknown-linux-gnu',
# detected conflict: 'bin/cargo-clippy'
#
# See https://github.com/rust-lang/rustup/issues/988#issuecomment-1820438467
- name: Stupid cargo hack
shell: bash
run: cargo version

# # TODO doesn't work.
# - name: Install LLVM 17
# if: ${{ inputs.cpp == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion rust/perspective-client/src/rust/config/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ impl Expressions {
}

#[doc(hidden)]
#[derive(Serialize, Clone, Copy)]
#[derive(Serialize, Clone, Copy, PartialEq)]
pub struct CompletionItemSuggestion {
pub label: &'static str,
pub insert_text: &'static str,
Expand Down
5 changes: 5 additions & 0 deletions rust/perspective-viewer/src/less/column-selector.less
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@
}
}

span.expression-edit-button.disabled {
opacity: 0;
pointer-events: none;
}

span.expression-delete-button {
padding-left: 5px;
margin-right: 8px;
Expand Down
4 changes: 4 additions & 0 deletions rust/perspective-viewer/src/less/viewer.less
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@
&:before {
display: inline-block;
height: 20px;
min-height: 20px;
width: 20px;
min-width: 20px;
content: "";
mask-size: cover;
-webkit-mask-size: cover;
Expand Down Expand Up @@ -351,7 +353,9 @@
&:before {
display: inline-block;
height: 20px;
min-height: 20px;
width: 20px;
min-width: 20px;
content: "";
mask-size: cover;
-webkit-mask-size: cover;
Expand Down
Loading
Loading