File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.3.1] - 2020-09-18
9+
10+ ### 🐛 Bug Fixes
11+
12+ - Fixed an issue where the 'Render labels' setting did not work.
13+
814## [ 1.3.0] - 2020-09-17
915
1016### ✨ Features
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export function SettingsTab<TBase extends Settings>(Base: TBase) {
175175 configure : ( setting ) => {
176176 setting . setValue ( this . plugin . options . renderLabels ) ;
177177 setting . onChange ( ( value ) => {
178- this . plugin . writeOptions ( ( old ) => ( old . renderLabelsIcon = value ) ) ;
178+ this . plugin . writeOptions ( ( old ) => ( old . renderLabels = value ) ) ;
179179 } ) ;
180180 } ,
181181 } ) ;
You can’t perform that action at this time.
0 commit comments