We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a0a779 commit 2d9a2dcCopy full SHA for 2d9a2dc
src/popups/conventional_commit.rs
@@ -730,6 +730,7 @@ impl Component for ConventionalCommitPopup {
730
731
visibility_blocking(self)
732
}
733
+
734
fn event(
735
&mut self,
736
event: &crossterm::event::Event,
@@ -757,7 +758,8 @@ impl Component for ConventionalCommitPopup {
757
758
{
759
self.next_step();
760
- if commit.more_info().len() == 1 {
761
+ if self.query_results_more_info.len() == 1
762
+ {
763
self.validate_escape(commit);
764
765
@@ -794,7 +796,19 @@ impl Component for ConventionalCommitPopup {
794
796
795
797
self.seleted_commit_type =
798
Some(self.query_results_type[idx]);
- self.next_step();
799
+ #[cfg(feature = "gitmoji")]
800
801
+ self.next_step();
802
803
804
805
+ self.validate_escape(
806
+ self.query_results_type[idx],
807
+ );
808
+ }
809
810
+ #[cfg(not(feature = "gitmoji"))]
811
+ self.validate_escape(commit);
812
813
814
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments