Browse Source
Merge pull request #1066 from luncheon/fix-decimal-places
fix: increase/decrease decimal places was reversed
master
mengshukeji
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
src/controllers/toolbar.js
|
|
@ -12,8 +12,8 @@ export const defaultToolbar = [ |
|
|
|
|
|
|
|
'currencyFormat', |
|
|
|
'percentageFormat', |
|
|
|
'numberDecrease', |
|
|
|
'numberIncrease', |
|
|
|
'numberDecrease', |
|
|
|
'moreFormats', |
|
|
|
'|', |
|
|
|
|
|
|
@ -184,7 +184,7 @@ export function createToolbarHtml() { |
|
|
|
style="user-select: none;"> |
|
|
|
<div class="luckysheet-icon luckysheet-inline-block toolbar-decimal-icon" |
|
|
|
style="user-select: none;"> |
|
|
|
<div aria-hidden="true" class="luckysheet-icon-img-container luckysheet-icon-img luckysheet-icon-decimal-decrease iconfont luckysheet-iconfont-jianxiaoxiaoshuwei" |
|
|
|
<div aria-hidden="true" class="luckysheet-icon-img-container luckysheet-icon-img luckysheet-icon-decimal-decrease iconfont luckysheet-iconfont-zengjiaxiaoshuwei" |
|
|
|
style="user-select: none;"> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -199,7 +199,7 @@ export function createToolbarHtml() { |
|
|
|
style="user-select: none;"> |
|
|
|
<div class="luckysheet-icon luckysheet-inline-block toolbar-decimal-icon" |
|
|
|
style="user-select: none;"> |
|
|
|
<div aria-hidden="true" class="luckysheet-icon-img-container luckysheet-icon-img luckysheet-icon-decimal-increase iconfont luckysheet-iconfont-zengjiaxiaoshuwei" |
|
|
|
<div aria-hidden="true" class="luckysheet-icon-img-container luckysheet-icon-img luckysheet-icon-decimal-increase iconfont luckysheet-iconfont-jianxiaoxiaoshuwei" |
|
|
|
style="user-select: none;"> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|