We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在載入舊資料時 因為台 是以簡字儲存 所以 dc 會有值 但在 data 會找不到 if ('undefined' !== typeof data[dc][dd]) 應該改為 if ('undefined' !== typeof data[dc] && 'undefined' !== typeof data[dc][dd])
The text was updated successfully, but these errors were encountered:
已修正這個問題。 另外加入了自動轉換縣市的簡化字(台/臺)
Sorry, something went wrong.
No branches or pull requests
在載入舊資料時 因為台 是以簡字儲存 所以 dc 會有值 但在 data 會找不到
if ('undefined' !== typeof data[dc][dd])
應該改為
if ('undefined' !== typeof data[dc] && 'undefined' !== typeof data[dc][dd])
The text was updated successfully, but these errors were encountered: