hash
stringlengths
40
40
diff
stringlengths
172
2.63k
message
stringlengths
12
593
project
stringlengths
7
65
split
stringclasses
1 value
diff_languages
stringclasses
54 values
9d3066189f8954586bd9d9bb1b020d434c76065f
diff --git a/src/components/fabSpeedDial/fabSpeedDial.js b/src/components/fabSpeedDial/fabSpeedDial.js index <HASH>..<HASH> 100644 --- a/src/components/fabSpeedDial/fabSpeedDial.js +++ b/src/components/fabSpeedDial/fabSpeedDial.js @@ -65,6 +65,14 @@ * space where the actions will appear, you must also add the `md-h...
docs(speedDial): Add troubleshooting section. There is currently a need to use `ng-cloak` on the parent container of the speed dial. Add a "Troubleshooting" section to the documentation which notes this issue. Fixes #<I>. Closes #<I>
angular_material
train
js
4dd5c7a50dffdd8c7d39eb3a64ae0891f776fd75
diff --git a/packages/dna-custom-elements-v0/src/mixins/custom-element.js b/packages/dna-custom-elements-v0/src/mixins/custom-element.js index <HASH>..<HASH> 100644 --- a/packages/dna-custom-elements-v0/src/mixins/custom-element.js +++ b/packages/dna-custom-elements-v0/src/mixins/custom-element.js @@ -14,6 +14,6 @@ exp...
fix: disconnected callback in CEv0 library
chialab_dna
train
js
a4a92e71cf5dde1f05f9856d3f76a9cbd3ef0f2e
diff --git a/tests/pipeline/test_create_pipeline.py b/tests/pipeline/test_create_pipeline.py index <HASH>..<HASH> 100644 --- a/tests/pipeline/test_create_pipeline.py +++ b/tests/pipeline/test_create_pipeline.py @@ -49,10 +49,10 @@ TEST_SETTINGS = { } +@pytest.fixture @mock.patch('foremast.pipeline.create_pipeline...
fix: Fixture decorator goes last
foremast_foremast
train
py
3eaca130942872f95c761d413af8074a991e08c1
diff --git a/dist/minimongo-observable/to-observable.js b/dist/minimongo-observable/to-observable.js index <HASH>..<HASH> 100644 --- a/dist/minimongo-observable/to-observable.js +++ b/dist/minimongo-observable/to-observable.js @@ -1,7 +1,7 @@ "use strict"; var observable_cursor_1 = require('./observable-cursor'); va...
chore(observable): Updated compiled file
Urigo_angular-meteor
train
js
2fafb6b028921e0bb817d477c40057af31c17983
diff --git a/src/components/DatePicker.js b/src/components/DatePicker.js index <HASH>..<HASH> 100644 --- a/src/components/DatePicker.js +++ b/src/components/DatePicker.js @@ -717,8 +717,11 @@ export default class DatePicker extends Component { <span style={ monthLblStyle } className={ this.p...
refactor(DatePicker): use string intoerpolation and add comment why and id is used
nikgraf_belle
train
js
e124328e30e9558e7bb16237ae0ff6b93e7663bd
diff --git a/api/tests/opentrons/protocol_engine/execution/test_run_control_handler.py b/api/tests/opentrons/protocol_engine/execution/test_run_control_handler.py index <HASH>..<HASH> 100644 --- a/api/tests/opentrons/protocol_engine/execution/test_run_control_handler.py +++ b/api/tests/opentrons/protocol_engine/executi...
test(protocol-engine): broaden acceptance criteria of wait for duration tests (#<I>)
Opentrons_opentrons
train
py
6535295d1dc68eb93619d1dd69d9298cb519bbe6
diff --git a/src/Flicking.js b/src/Flicking.js index <HASH>..<HASH> 100644 --- a/src/Flicking.js +++ b/src/Flicking.js @@ -249,8 +249,12 @@ export default class Flicking extends Mixin(Component).with(eventHandler) { const wrapperStyle = getComputedStyle(this.$wrapper); const paddingType = horizontal ? ["Left", ...
fix(Flicking): Change getting wrapper's size On getting wrapper's size, changed to get the max from the offset and the computed value Ref #7
naver_egjs-flicking
train
js
d1398b347f13f1346bb2cc868004918abeec6c13
diff --git a/test/renderer/epics/theming-spec.js b/test/renderer/epics/theming-spec.js index <HASH>..<HASH> 100644 --- a/test/renderer/epics/theming-spec.js +++ b/test/renderer/epics/theming-spec.js @@ -29,8 +29,10 @@ describe('setStoredThemeObservable', () => { setStoredThemeObs.subscribe(() => { expect(...
test(themeSpec): Move done callback to proper location
nteract_nteract
train
js
937bbd13dc6847c1b17ca2a0f637d24410b6ae3b
diff --git a/packages/build-tools/create-webpack-config.js b/packages/build-tools/create-webpack-config.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/create-webpack-config.js +++ b/packages/build-tools/create-webpack-config.js @@ -591,7 +591,7 @@ async function createWebpackConfig(buildConfig) { main...
fix: temporarily disable the futureEmitAssets output config option until the WriteFilePlugin plugin error is further debugged
bolt-design-system_bolt
train
js
b3d385fcbb22001c71377fd2c5be0e428b3a9ac1
diff --git a/baka_model/__init__.py b/baka_model/__init__.py index <HASH>..<HASH> 100644 --- a/baka_model/__init__.py +++ b/baka_model/__init__.py @@ -54,6 +54,9 @@ def includeme(config): "tm.activate_hook": tm_activate_hook, "tm.annotate_user": False, }) + + # use pyramid_retry couse pyramid_...
chore(dependency): add pyramid_retry
suryakencana007_baka_model
train
py
06fd3ce3222f43cf4bd28dd363222b25bcbd9a1f
diff --git a/lib/media/gap_jumping_controller.js b/lib/media/gap_jumping_controller.js index <HASH>..<HASH> 100644 --- a/lib/media/gap_jumping_controller.js +++ b/lib/media/gap_jumping_controller.js @@ -7,6 +7,7 @@ goog.provide('shaka.media.GapJumpingController'); goog.require('shaka.log'); +goog.require('shaka.med...
fix: Fix strict compiler errors In our Google-internal build systems, with the strictest compiler settings, we were seeing errors related to these two issues: 1. A missing require 2. Incomplete type info This fixes the errors in that environment. Change-Id: I9c4c<I>ed6ef8f<I>e<I>a<I>b<I>c4ee
google_shaka-player
train
js,js
02742df69cf9048270231e3917f4e8c2d6872246
diff --git a/lib/mittsu/cameras/orthographic_camera.rb b/lib/mittsu/cameras/orthographic_camera.rb index <HASH>..<HASH> 100644 --- a/lib/mittsu/cameras/orthographic_camera.rb +++ b/lib/mittsu/cameras/orthographic_camera.rb @@ -25,8 +25,8 @@ module Mittsu def update_projection_matrix dx = (right - left) / (2...
fix: bad orthographic camera matrix math
jellymann_mittsu
train
rb
bb082920445a69ff421a26c67f22bde230d7a870
diff --git a/events/eventbriteEvents.js b/events/eventbriteEvents.js index <HASH>..<HASH> 100644 --- a/events/eventbriteEvents.js +++ b/events/eventbriteEvents.js @@ -26,7 +26,7 @@ function constructAddress(venue) { function isFreeWithVenue(event) { var hasVenue = event.venue && event.venue.address && event.venue...
fix(events): added check if ticket_classes exist for eventbrite events
webuildorg_webuild-repos
train
js
4562375ff1fc6db6d1906f9035671f7d79871076
diff --git a/src/Viewable.php b/src/Viewable.php index <HASH>..<HASH> 100644 --- a/src/Viewable.php +++ b/src/Viewable.php @@ -46,7 +46,7 @@ trait Viewable public function scopeOrderByViews(Builder $query, string $direction = 'desc', $period = null, string $collection = null): Builder { return (new O...
refactor: use SortDirection enum
cyrildewit_eloquent-viewable
train
php
2db11db03c89147a6debf58e0f69294b0972f6dd
diff --git a/DrdPlus/Tables/Races/Restrictions/EnumTypes/RequiresDmAgreementType.php b/DrdPlus/Tables/Races/Restrictions/EnumTypes/RequiresDmAgreementType.php index <HASH>..<HASH> 100644 --- a/DrdPlus/Tables/Races/Restrictions/EnumTypes/RequiresDmAgreementType.php +++ b/DrdPlus/Tables/Races/Restrictions/EnumTypes/Requi...
fix: Enum type for boolean DM agreement requirement can be used
drdplusinfo_tables
train
php
6b3121d0ffe199c4b71ffe6ba37bb87c3180e083
diff --git a/system/Validation/Validation.php b/system/Validation/Validation.php index <HASH>..<HASH> 100644 --- a/system/Validation/Validation.php +++ b/system/Validation/Validation.php @@ -215,7 +215,7 @@ class Validation implements ValidationInterface } if (in_array('permit_empty', $rules, true))...
fix: cast $value to string, because it may be int/bool/null...
codeigniter4_CodeIgniter4
train
php
bddb32f2bb4e0e0f2d125f5d86d61faf57e7ce7a
diff --git a/src/playbacks/html5_video/html5_video.js b/src/playbacks/html5_video/html5_video.js index <HASH>..<HASH> 100644 --- a/src/playbacks/html5_video/html5_video.js +++ b/src/playbacks/html5_video/html5_video.js @@ -126,6 +126,7 @@ export default class HTML5Video extends Playback { }) playbackConfig....
fix(html5_video): properly sets the crossorigin element attribute
clappr_clappr
train
js
7b899c47e717d925e06f7fea6a7a10ed3fffae50
diff --git a/tests/integration/Subscription/SubscriptionFixture.php b/tests/integration/Subscription/SubscriptionFixture.php index <HASH>..<HASH> 100644 --- a/tests/integration/Subscription/SubscriptionFixture.php +++ b/tests/integration/Subscription/SubscriptionFixture.php @@ -6,6 +6,7 @@ use Commercetools\Core\Client...
test(Subscription): fix subscription fixture
commercetools_commercetools-php-sdk
train
php
3c7fff53b21eec520c38dfc0d207a35aba68492d
diff --git a/src/prompts/question-names.js b/src/prompts/question-names.js index <HASH>..<HASH> 100644 --- a/src/prompts/question-names.js +++ b/src/prompts/question-names.js @@ -2,6 +2,6 @@ export const questionNames = { GIT_REPO: 'gitRepo', REPO_HOST: 'repoHost', REPO_OWNER: 'repoOwner', - PROJECT_TYPE: 'pr...
fix(question-names): improved the key for the language question name to match the actual value and better align with its purpose. this also removes the collision with PROJECT_TYPE from the js language scaffolder BREAKING CHANGE: the PROJECT_TYPE question name key is now PROJECT_LANGUAGE
travi_project-scaffolder
train
js
ae6925efbd03d5edbe353926a6218a67bd027f58
diff --git a/bindings/vue/src/directives/VOnsModel.js b/bindings/vue/src/directives/VOnsModel.js index <HASH>..<HASH> 100644 --- a/bindings/vue/src/directives/VOnsModel.js +++ b/bindings/vue/src/directives/VOnsModel.js @@ -31,7 +31,7 @@ const _getModel = (binding, context, newValue) => { } if (newValue !== unde...
fix(vue): Ensure VOnsModel reactivity.
OnsenUI_OnsenUI
train
js
be5cd69ad1f69b0b11b68ce6c9c219f96ade6b35
diff --git a/ui/src/components/fab/QFabAction.js b/ui/src/components/fab/QFabAction.js index <HASH>..<HASH> 100644 --- a/ui/src/components/fab/QFabAction.js +++ b/ui/src/components/fab/QFabAction.js @@ -4,9 +4,10 @@ import QBtn from '../btn/QBtn.js' import QIcon from '../icon/QIcon.js' import useFab, { useFabProps ...
feat(QFabAction): Allow using QFabAction outside QFab #<I> (#<I>)
quasarframework_quasar
train
js
d6c65b21cf1d12833589c3adbbc2f4975b674557
diff --git a/tooling/commands/list.js b/tooling/commands/list.js index <HASH>..<HASH> 100644 --- a/tooling/commands/list.js +++ b/tooling/commands/list.js @@ -53,6 +53,11 @@ module.exports = { .filter((p) => !p.includes(`media-adapter-webrtc`)); } + // Make sure we always test the samples when ...
fix(tooling): run sample tests at appropriate time
webex_spark-js-sdk
train
js
112d82b3a8acc1bc6c20bddb627e15a97412fc1f
diff --git a/packages/cozy-konnector-libs/src/libs/linker/billsToOperation/operationsFilters.js b/packages/cozy-konnector-libs/src/libs/linker/billsToOperation/operationsFilters.js index <HASH>..<HASH> 100644 --- a/packages/cozy-konnector-libs/src/libs/linker/billsToOperation/operationsFilters.js +++ b/packages/cozy-ko...
fix: avoid date-fns error when built with webpack
konnectors_libs
train
js
5552838dc29f74fe9898b5767d58465c9bd3f22f
diff --git a/packages/typography/src/_constants.js b/packages/typography/src/_constants.js index <HASH>..<HASH> 100644 --- a/packages/typography/src/_constants.js +++ b/packages/typography/src/_constants.js @@ -8,6 +8,7 @@ export const AVAILABLE_FONT_WEIGHTS = Object.freeze([ 300, 400, 500, + 600, 700, ...
fix: add <I> to valid typography font weights
Autodesk_hig
train
js
c1e9e0d25d32400536d9b5496c02b1eee19c8c29
diff --git a/src/Color/ColorTag.php b/src/Color/ColorTag.php index <HASH>..<HASH> 100644 --- a/src/Color/ColorTag.php +++ b/src/Color/ColorTag.php @@ -88,7 +88,7 @@ class ColorTag */ public static function wrap(string $text, string $tag): string { - if (!$text || !$tag) { + if ($text === '...
fix: warp color tag check 0 as empty
php-toolkit_cli-utils
train
php
bd1dab91b0466f332b1eb7b57b48a891657f621b
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -79,9 +79,9 @@ function elastomer (name, init) { extends: init.extends }) } - registeredElement.localName = name - return registeredElement } + registeredElement.localName = name ...
fix: Does not return the element constructor when prototype is provided
nodys_elastomer
train
js
4aaf6208e0669858d44ee7db4b6612e697f457d2
diff --git a/samples/system-test/betaFeatures.test.js b/samples/system-test/betaFeatures.test.js index <HASH>..<HASH> 100644 --- a/samples/system-test/betaFeatures.test.js +++ b/samples/system-test/betaFeatures.test.js @@ -61,7 +61,7 @@ describe('BetaFeatures', () => { const output = execSync( `${cmd} multi...
chore: changed assert output to check constant values (#<I>) Fixes #<I> 🦕
googleapis_nodejs-speech
train
js
8c2674ea6a742173d278f3d6c3c75f4999b84293
diff --git a/src/compiler/parser/html-parser.js b/src/compiler/parser/html-parser.js index <HASH>..<HASH> 100644 --- a/src/compiler/parser/html-parser.js +++ b/src/compiler/parser/html-parser.js @@ -248,12 +248,9 @@ export function parseHTML (html, options) { if (start == null) start = index if (end == null) ...
refactor: remove unnecessary judgment (#<I>)
kaola-fed_megalo
train
js
f85e1aad5ee13a93aeffd5d47cca3f4ddd2e8a4c
diff --git a/internal/builtin/function.go b/internal/builtin/function.go index <HASH>..<HASH> 100644 --- a/internal/builtin/function.go +++ b/internal/builtin/function.go @@ -137,8 +137,12 @@ func formatValue(raw interface{}) interface{} { case reflect.Map: m := make(map[string]interface{}) for key, value := ra...
feat: generate html reports for API testing #<I>
HttpRunner_HttpRunner
train
go
7bee36e36844c4b2e5ab0327cdf6de4982cc5599
diff --git a/commitlint.config.js b/commitlint.config.js index <HASH>..<HASH> 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -8,7 +8,7 @@ module.exports = { 'footer-max-line-length': [2, 'always', 72], 'header-max-length': [2, 'always', 72], 'scope-case': [2, 'always', 'start-case'], - ...
chore: Register 'Variables' scope
serverless_serverless
train
js
0dd4c9d811c82143d23320b529b4573224363f57
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -59,7 +59,8 @@ setup( 'django-extensions', 'djangorestframework', 'south', - 'traits' + 'traits', + 'networkx' ], platforms=['OS Independent'], license='Gnu Public...
fix(setup): Add requirement on networkx
Parisson_TimeSide
train
py
896d0abd90fa4bb828227a00d258092dc380b853
diff --git a/tests/share_elements/test_examples.py b/tests/share_elements/test_examples.py index <HASH>..<HASH> 100644 --- a/tests/share_elements/test_examples.py +++ b/tests/share_elements/test_examples.py @@ -105,7 +105,7 @@ def test_functionality_example(caplog): rafcon.core.singleton.state_machine_exec...
fix(test_examples): set correct number of warnings
DLR-RM_RAFCON
train
py
62f650166f5d261adb41515ef04f0490aa54a075
diff --git a/uPortal-layout/uPortal-layout-impl/src/main/java/org/apereo/portal/layout/dlm/LPARemoveParameter.java b/uPortal-layout/uPortal-layout-impl/src/main/java/org/apereo/portal/layout/dlm/LPARemoveParameter.java index <HASH>..<HASH> 100755 --- a/uPortal-layout/uPortal-layout-impl/src/main/java/org/apereo/portal/...
docs: annotate LPARemoveParameter perform() as @Override
Jasig_uPortal
train
java
656dc7c7a5838b4b0419e8f527cdc8fe46965bea
diff --git a/packages/mdc-textfield/adapter.js b/packages/mdc-textfield/adapter.js index <HASH>..<HASH> 100644 --- a/packages/mdc-textfield/adapter.js +++ b/packages/mdc-textfield/adapter.js @@ -130,14 +130,6 @@ class MDCTextFieldAdapter { getNativeInput() {} /** - * Returns the idle outline element's compute...
fix(text-field): Remove extra adapter method (#<I>) Remove `getIdleOutlineStyleValue` method from text field adapter as it was unused following the merge of #<I>
material-components_material-components-web
train
js
29f9850a6cb3c7f8c7893ce615b217e89b5a60d0
diff --git a/actor-sdk/sdk-core-android/android-sdk/src/main/java/im/actor/sdk/controllers/conversation/ChatActivity.java b/actor-sdk/sdk-core-android/android-sdk/src/main/java/im/actor/sdk/controllers/conversation/ChatActivity.java index <HASH>..<HASH> 100644 --- a/actor-sdk/sdk-core-android/android-sdk/src/main/java/...
fix(android): request focus after close audio record
actorapp_actor-platform
train
java
3679aecf8c7e0f6550bef662e19584ca1bfff655
diff --git a/tasks/bump.js b/tasks/bump.js index <HASH>..<HASH> 100644 --- a/tasks/bump.js +++ b/tasks/bump.js @@ -88,6 +88,7 @@ module.exports = function(grunt) { opts.files.forEach(function(file, idx) { var version = null; var content = grunt.file.read(file).replace(VERSION_REGEXP, function(m...
fix: Bumping git version should append the short sha1 to the current version The use of `grunt bump:git` simply overwrote the version with the short sha1, but it should really append the sha1 to the current version which this change does.
vojtajina_grunt-bump
train
js
182ab9ad7646ccf42b25e539990f8cb0c40f68b5
diff --git a/spec/chromium-spec.js b/spec/chromium-spec.js index <HASH>..<HASH> 100644 --- a/spec/chromium-spec.js +++ b/spec/chromium-spec.js @@ -62,14 +62,6 @@ describe('chromium feature', () => { }); describe('window.open', () => { - it('accepts "nodeIntegration" as feature', async () => { - const me...
test: remove duplicate test that is causing hang in Windows (#<I>)
electron_electron
train
js
f3979506524aacd9b8c10c697e3fc3871fe10fb3
diff --git a/test/integration/binary.js b/test/integration/binary.js index <HASH>..<HASH> 100644 --- a/test/integration/binary.js +++ b/test/integration/binary.js @@ -30,7 +30,7 @@ describe('node-static (CLI)', function () { await updatePort(this); }); it('serving hello.txt', async functi...
test: indicate how to get stdout
cloudhead_node-static
train
js
276ed6885d20456846cc4b54c76a056343d04eb2
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,3 +32,13 @@ pygments_style = 'default' # html settings html_theme = 'sphinx_rtd_theme' html_static_path = ['_static'] + + +# Unfortunately, Sphinx doesn't support code highlighting for standard +# reStru...
docs: highlight all code snippets Unfortunately, Sphinx doesn't support code highlighting for standard reStructuredText `code` directive. So let's register 'code' directive as alias for Sphinx's own implementation. See <URL>
ikalnytskyi_holocron
train
py
dbeedb49c1c35a6ba6a1e6dfb287493e3786961f
diff --git a/pynubank/nubank.py b/pynubank/nubank.py index <HASH>..<HASH> 100644 --- a/pynubank/nubank.py +++ b/pynubank/nubank.py @@ -108,7 +108,7 @@ class Nubank: response = requests.post(self.proxy_list_app_url['lift'], json=payload, headers=self.headers) auth_data = self._handle_response(respons...
fix: Save the refresh token with all authentication methods
andreroggeri_pynubank
train
py
f382379fc3cbe5a320934fb04897702b4ee7c81e
diff --git a/MangoPay/Libraries/RestTool.php b/MangoPay/Libraries/RestTool.php index <HASH>..<HASH> 100644 --- a/MangoPay/Libraries/RestTool.php +++ b/MangoPay/Libraries/RestTool.php @@ -221,10 +221,10 @@ class RestTool foreach ($headers as $header) { $lowercaseHeader = strtolower($header); ...
fix: pagination - total pages/items always zero
Mangopay_mangopay2-php-sdk
train
php
36883226a1e5ca582b8a7e2e7241eac3e956d5c3
diff --git a/source/rafcon/gui/controllers/state_editor/state_editor.py b/source/rafcon/gui/controllers/state_editor/state_editor.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/controllers/state_editor/state_editor.py +++ b/source/rafcon/gui/controllers/state_editor/state_editor.py @@ -152,7 +152,7 @@ class Sta...
feat(state_editor): changed hook name to post_state_editor_register_view changed hook name from on_state_editor_init to post_state_editor_register_view in order to be consistent to other existing hook names
DLR-RM_RAFCON
train
py
a240188fa22dd179b936d7218d17056235a8e17f
diff --git a/front_end/ndb/NdbMain.js b/front_end/ndb/NdbMain.js index <HASH>..<HASH> 100644 --- a/front_end/ndb/NdbMain.js +++ b/front_end/ndb/NdbMain.js @@ -44,7 +44,7 @@ Ndb.NdbMain = class extends Common.Object { if (Common.moduleSetting('autoStartMain').get()) { const main = await Ndb.mainConfiguration...
fix(frontend): fixed using ndb with binary ndb npm run should use first arg as binary, not node. Fixes <URL>
GoogleChromeLabs_ndb
train
js
c7a38f1221964b8268f13845757de6f345d6440f
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -118,7 +118,7 @@ export default class ReactJkMusicPlayer extends PureComponent { toggle: this.props.mode === MODE.FULL, playing: false, currentTime: 0, - soundValue: DEFAULT_VOLUME * 100, + ...
fix: always reset volume when initializing player Sometimes, the player can be initialized with an empty audioList. In this case, the default volume doesn't get set from the defaultVolume prop, and soundValue gets set to <I>, which is out of range. While here, fix the default value for soundValue.
lijinke666_react-music-player
train
js
e129534544df96ee1713c2a35069b742bf7724ae
diff --git a/packages/node_modules/@cerebral/http/src/utils.js b/packages/node_modules/@cerebral/http/src/utils.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@cerebral/http/src/utils.js +++ b/packages/node_modules/@cerebral/http/src/utils.js @@ -4,7 +4,7 @@ export function createResponse(options, resolve, ...
fix(http): pass options to callback
cerebral_cerebral
train
js
d542487c3547a0b17490fce0edcb2bc049b135bb
diff --git a/components/table/row.js b/components/table/row.js index <HASH>..<HASH> 100644 --- a/components/table/row.js +++ b/components/table/row.js @@ -85,9 +85,9 @@ export default class Row extends PureComponent { id = getUID('table-row-'); - onMouseEnter = () => { + onMouseEnter = (e) => { const {ite...
feat(table): pass mouse event to hover handler
JetBrains_ring-ui
train
js
5ed2a95856992733d59be9f48fc9ba300028e919
diff --git a/src/client/Client.js b/src/client/Client.js index <HASH>..<HASH> 100644 --- a/src/client/Client.js +++ b/src/client/Client.js @@ -323,7 +323,7 @@ class Client extends EventEmitter { * @returns {Promise<Invite>} * @example * client.fetchInvite('https://discord.gg/bRCvFy9') - * .then(invite =...
docs(Client): add missing parenthesis in fetchInvite example (#<I>) This is already fixed in master, resolves #<I>
discordjs_discord.js
train
js
cd782fb1d9d910ebd0690cc98d80bca41270b7aa
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -312,9 +312,13 @@ function proxy(callback) { if (config.values) { Object.keys(config.values).forEach(function(name) { var value = name ? config.values[name] : null; - if (typeof value === 's...
feat: Support for setting rules & values by options
avwo_whistle
train
js
97577a3bdfd5fadf071dd27d9f09a145b007907b
diff --git a/tasks/build/node.js b/tasks/build/node.js index <HASH>..<HASH> 100644 --- a/tasks/build/node.js +++ b/tasks/build/node.js @@ -1,15 +1,30 @@ 'use strict' const $ = require('gulp-load-plugins')() +const runSequence = require('run-sequence') const config = require('../../config/babel') module.export...
fix(build): Copy all files, not only js files when building for node
ipfs_aegir
train
js
1dde4e098464a06e4ae4ecda89350398085eeaf2
diff --git a/lib/client/index.js b/lib/client/index.js index <HASH>..<HASH> 100644 --- a/lib/client/index.js +++ b/lib/client/index.js @@ -63,8 +63,10 @@ module.exports = function(ss, router) { // Require sub modules var templateEngine = require('./template_engine')(ss), formatters = require('./formatters'...
fix(client): http require provides the serveClient API
socketstream_socketstream
train
js
147b4b3d7607f7e00d883af94389b0d426c7d2f1
diff --git a/lib/collection.js b/lib/collection.js index <HASH>..<HASH> 100644 --- a/lib/collection.js +++ b/lib/collection.js @@ -77,7 +77,8 @@ class Collection { const chained = []; const args = Array.prototype.slice.call(arguments); const actionPromise = this.$baseAction(fn, args, chained); - ...
fix: use original stack trace when reporting error in async action
boosterfuels_monogram
train
js
1852be4cfc397fd227ebdb1a2e3a305346bff3ba
diff --git a/server/plugins/public.js b/server/plugins/public.js index <HASH>..<HASH> 100644 --- a/server/plugins/public.js +++ b/server/plugins/public.js @@ -19,7 +19,7 @@ function register (server, options, next) { var hoodiePublicPath = path.join(require.resolve('../../package.json'), '..', 'public') var accou...
fix: load admin app from `hoodie-admin/dist`
hoodiehq_hoodie
train
js
7aeebd6543d89b7d8b9474bc45651b88c5c2d396
diff --git a/lib/plugins.js b/lib/plugins.js index <HASH>..<HASH> 100644 --- a/lib/plugins.js +++ b/lib/plugins.js @@ -44,6 +44,8 @@ var Plugins = function(config) { throw new Error('Plugin configuration did not contain a valid path or ' + 'inline definition.'); } + + log.debug('Plugin "' + pa...
feat(plugins): reporting loaded plugins
angular_protractor
train
js
27b7c32626451772b95188a2e576193280bfcf0b
diff --git a/core/src/setup.js b/core/src/setup.js index <HASH>..<HASH> 100644 --- a/core/src/setup.js +++ b/core/src/setup.js @@ -116,7 +116,7 @@ ons.CardElement = CardElement; window.addEventListener('load', () => { ons.fastClick = FastClick.attach(document.body); - const suppportTouchAction = 'touch-action' i...
fix(setup): Replace `suppportTouchAction` with `supportTouchAction`.
OnsenUI_OnsenUI
train
js
ed749a5581b3478ee3cad8931f970acdaf9df190
diff --git a/test/e2e/cli_test.go b/test/e2e/cli_test.go index <HASH>..<HASH> 100644 --- a/test/e2e/cli_test.go +++ b/test/e2e/cli_test.go @@ -998,6 +998,7 @@ func (s *CLIWithServerSuite) TestTemplateLevelSemaphore() { } func (s *CLISuite) TestRetryOmit() { + s.T().Skip("flaky - see https://github.com/argoproj/argo...
test: Skip TestStopBehavior and TestRetryOmit (#<I>)
argoproj_argo
train
go,go
591b8c91de013d41adaf118e8d208f4f427d4bde
diff --git a/master/setup.py b/master/setup.py index <HASH>..<HASH> 100755 --- a/master/setup.py +++ b/master/setup.py @@ -516,6 +516,7 @@ setup_args['extras_require'] = { "buildbot-worker=={0}".format(bundle_version), "buildbot-waterfall-view=={0}".format(bundle_version), "buildbot-console-v...
fix: install buildbot-grid-view with buildbot[bundle]
buildbot_buildbot
train
py
530580b37a4afa304199c7fa2d98ee648e92baee
diff --git a/lib/plugins/load-plugin.js b/lib/plugins/load-plugin.js index <HASH>..<HASH> 100644 --- a/lib/plugins/load-plugin.js +++ b/lib/plugins/load-plugin.js @@ -1094,6 +1094,7 @@ module.exports = function(options, callback) { var args = normalizeArgs(uri, cb, req, curUrl); uri = args...
refactor: set agent=false
avwo_whistle
train
js
854d6d59b6595ea903d46f4531bf6cb5d930b017
diff --git a/docs/ex2rst.py b/docs/ex2rst.py index <HASH>..<HASH> 100644 --- a/docs/ex2rst.py +++ b/docs/ex2rst.py @@ -47,9 +47,11 @@ args = parser.parse_args() # ----------------------------------------------------------------------------- # parse python file +ref = '-'.join(os.path.splitext(args.infile)[0].split(...
docs: added reference tag to all examples in ex2rst.py
gwpy_gwpy
train
py
df6870a2f400fe1461e455be7cca85aea36833f2
diff --git a/coreinit.go b/coreinit.go index <HASH>..<HASH> 100644 --- a/coreinit.go +++ b/coreinit.go @@ -28,6 +28,9 @@ func main() { syscall.Exit(1) } + // Print out to stderr by default (stderr instead of stdout due to glog's choices) + flag.Lookup("logtostderr").Value.Set("true") + cfg, err := loadConfigFr...
fix(logging): Log directly to stderr rather than arbitrary directory
coreos_fleet
train
go
73360924d28274e7614f892da7802a7080935d17
diff --git a/teslajsonpy/controller.py b/teslajsonpy/controller.py index <HASH>..<HASH> 100644 --- a/teslajsonpy/controller.py +++ b/teslajsonpy/controller.py @@ -169,7 +169,7 @@ async def wake_up(wrapped, instance, args, kwargs) -> Callable: "Exception: %s\n%s(%s %s)", str(ex), wrapped.__name__, args,...
fix: exit wake_up attempt if car not identified may solve <URL>
zabuldon_teslajsonpy
train
py
2557992b7000708c334cbef43c1b4d307fcee5f2
diff --git a/tests/mock/server_v2.go b/tests/mock/server_v2.go index <HASH>..<HASH> 100644 --- a/tests/mock/server_v2.go +++ b/tests/mock/server_v2.go @@ -4,14 +4,14 @@ import ( "net/http" "github.com/coreos/etcd/store" - "github.com/coreos/go-raft" + "github.com/coreos/etcd/third_party/github.com/coreos/raft" ...
fix(tests): use correct raft package
etcd-io_etcd
train
go
01fc8bb990545f591457da4660f2970fe0122f5e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -30,7 +30,7 @@ module.exports = function(content, sourceMap) { } }); var prefix = HEADER + imports.join("\n") + "\n\n"; - var postfix = postfixes.join("\n"); + var postfix = "\n" + postfixes.join("\n"); if(sourceMap) ...
chore(postfix): works with source maps
webpack-contrib_imports-loader
train
js
cd39491ea395c985f2014dfc03379db5c894f711
diff --git a/lib/Server.js b/lib/Server.js index <HASH>..<HASH> 100644 --- a/lib/Server.js +++ b/lib/Server.js @@ -725,8 +725,7 @@ class Server { listen(port, hostname, fn) { if (hostname === 'local-ip') { - this.hostname = - internalIp.v4.sync() || '0.0.0.0' || internalIp.v6.sync() || '::'; + ...
fix: hostname resolving (#<I>)
webpack_webpack-dev-server
train
js
3243148994cfd9f34c0a5f4c2678b061c4fb7972
diff --git a/test/unit/transform/aggregate-spec.js b/test/unit/transform/aggregate-spec.js index <HASH>..<HASH> 100644 --- a/test/unit/transform/aggregate-spec.js +++ b/test/unit/transform/aggregate-spec.js @@ -92,13 +92,13 @@ describe('View.transform(): aggregate: performance of partition', () => { }); const t3 ...
chore(dev): travis's vm performance is not catching up with our performance tests
antvis_data-set
train
js
2ed1b9eace01d3ea5630ac0ed047f2a121c8f476
diff --git a/lib/inspectors/res.js b/lib/inspectors/res.js index <HASH>..<HASH> 100644 --- a/lib/inspectors/res.js +++ b/lib/inspectors/res.js @@ -223,6 +223,7 @@ module.exports = function (req, res, next) { isHttpsProxy = proxyRule.isHttps || proxyRule.isHttpsInternal; isInternalProxy...
refactor: disable h2 is https2http
avwo_whistle
train
js
4ef12ff5982b9b829b083b2f6f483fec00d3f403
diff --git a/lib/config/migration.js b/lib/config/migration.js index <HASH>..<HASH> 100644 --- a/lib/config/migration.js +++ b/lib/config/migration.js @@ -365,6 +365,7 @@ function migrateConfig(config) { } } else if ( (key === 'prBody' || key.startsWith('commitMessage')) && + val && ...
fix: check val before migrating
renovatebot_renovate
train
js
9d50509c6f4df317235cb4f7c745c6d18411a094
diff --git a/browsers-ng.js b/browsers-ng.js index <HASH>..<HASH> 100644 --- a/browsers-ng.js +++ b/browsers-ng.js @@ -46,7 +46,7 @@ module.exports = function(packageName, argv) { }, sl_safari_latest_mac12: { base: 'SauceLabs', - platform: 'macOS 10.12', + platform: 'macOS 10.13', ...
chore(testing): update to latest macOS version
webex_spark-js-sdk
train
js
9675bd6d0dadbce6f1179780f7bd8dddfb607162
diff --git a/lib/platform/github/gh-got-wrapper.js b/lib/platform/github/gh-got-wrapper.js index <HASH>..<HASH> 100644 --- a/lib/platform/github/gh-got-wrapper.js +++ b/lib/platform/github/gh-got-wrapper.js @@ -80,13 +80,15 @@ async function get(path, options, retries = 5) { } // istanbul ignore if if (m...
fix(github): graphql parsing
renovatebot_renovate
train
js
d55a8727f6289c379efecd3789131f9334ac0e38
diff --git a/lib/run.js b/lib/run.js index <HASH>..<HASH> 100644 --- a/lib/run.js +++ b/lib/run.js @@ -51,7 +51,7 @@ module.exports = (_argv, stream=process.stdin, doExit) => { else ghIssue = await createIssue(); - if (messages && messages.length) + if (Array.isArray(messages) && mes...
fix: only process messages if it is array
MailOnline_tap-github-issues
train
js
31bb28ee526ca05f524dc5e56ee31e843c2c14d1
diff --git a/packages/ui-scripts/lib/publish.js b/packages/ui-scripts/lib/publish.js index <HASH>..<HASH> 100644 --- a/packages/ui-scripts/lib/publish.js +++ b/packages/ui-scripts/lib/publish.js @@ -48,7 +48,7 @@ try { process.argv[3] === 'current' || !process.argv[3] ? pkgJSON.version : process.argv...
chore(ui-scripts): change fixpublish fn name to publish
instructure_instructure-ui
train
js
316429421d186b6ef7b7b799cee0fa178c611f4c
diff --git a/tests/test_pykakasi.py b/tests/test_pykakasi.py index <HASH>..<HASH> 100644 --- a/tests/test_pykakasi.py +++ b/tests/test_pykakasi.py @@ -87,6 +87,30 @@ class TestPyKakasi(unittest.TestCase): for case, result in TESTS: self.assertEqual(converter.do(case), result) + def test_kakas...
test: rise coverage for pykakasi function J2K
miurahr_pykakasi
train
py
48af1d6c41cbd94d81d505446a8c0025a9cb679c
diff --git a/system/Database/Query.php b/system/Database/Query.php index <HASH>..<HASH> 100644 --- a/system/Database/Query.php +++ b/system/Database/Query.php @@ -275,12 +275,13 @@ class Query implements QueryInterface { $sql = $this->finalQueryString; - $hasNamedBinds = strpos($sql, '?') === fal...
refactor: intorduce explaining variable
codeigniter4_CodeIgniter4
train
php
792d7b6b2625272f706a571f3a42ccc7e6497367
diff --git a/packages/create/src/core.js b/packages/create/src/core.js index <HASH>..<HASH> 100644 --- a/packages/create/src/core.js +++ b/packages/create/src/core.js @@ -51,8 +51,8 @@ export function copyTemplates(fromGlob, toDir = process.cwd(), data = {}) { const fileContent = fs.readFileSync(filePath, 'u...
fix(create): handle windows file pathes as well
open-wc_open-wc
train
js
67491f046c48e65b75ffc16442286ae78219ad72
diff --git a/sample/src/about/about.js b/sample/src/about/about.js index <HASH>..<HASH> 100644 --- a/sample/src/about/about.js +++ b/sample/src/about/about.js @@ -21,7 +21,7 @@ export class About { attached() { // let bridge = System.get(System.normalizeSync('aurelia-materialize-bridge')); // this.version ...
chore(sample): increase version
aurelia-ui-toolkits_aurelia-materialize-bridge
train
js
95f0b1b260fe67b111e9a133d4d3e3559dc26b28
diff --git a/resource/template/resource.go b/resource/template/resource.go index <HASH>..<HASH> 100644 --- a/resource/template/resource.go +++ b/resource/template/resource.go @@ -172,8 +172,26 @@ func (t *TemplateResource) sync() error { } } log.Debug("Overwriting target config " + t.Dest) - if err := os.Ren...
fix(resource): re-implement /etc/hosts fix This was implemented for confd <I>.x in #<I>, but lost when the <I>.x branch was made the new master.
kelseyhightower_confd
train
go
f29986dacfbea76322bdba8231ceb582dafbf5cd
diff --git a/intranet/utils/helpers.py b/intranet/utils/helpers.py index <HASH>..<HASH> 100644 --- a/intranet/utils/helpers.py +++ b/intranet/utils/helpers.py @@ -166,6 +166,7 @@ def get_fcps_emerg(request): def get_ap_week_warning(request): + """ ap_day = timezone.localtime() if ap_day.hour > 16: ...
chore(utils): disable AP week warning temporarily
tjcsl_ion
train
py
78af8d5e473a0432df19adcc78308452db6b3925
diff --git a/src/buildUtil/generate-exposure.js b/src/buildUtil/generate-exposure.js index <HASH>..<HASH> 100644 --- a/src/buildUtil/generate-exposure.js +++ b/src/buildUtil/generate-exposure.js @@ -107,7 +107,7 @@ async function generateIndex() { registerNamespace: argv.core ? "" : "gr.notifyRegisteringPlugin(_...
fix: use 'as' syntax for cast
GrimoireGL_grimoirejs-cauldron
train
js
847aa9ca7f885f126c4a0a0279db30c05a8c9a6f
diff --git a/lib/plugins/package/lib/zipService.js b/lib/plugins/package/lib/zipService.js index <HASH>..<HASH> 100644 --- a/lib/plugins/package/lib/zipService.js +++ b/lib/plugins/package/lib/zipService.js @@ -194,7 +194,7 @@ function excludeNodeDevDependencies(servicePath) { return fs .rea...
fix(Packaging): Proper exclusion of dependencies across platforms
serverless_serverless
train
js
f7d90e5d03b8170077398acd50a2ec3657b395bc
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -17,7 +17,8 @@ var initLogServer = require('./util/log-server'); var pluginMgr = require('./plugins'); var config = require('./config'); var LOCALHOST = '127.0.0.1'; -var WHISTLE_POLICY_HEADER = 'x-whistle-p...
feat: Allow change local ui host
avwo_whistle
train
js
72ebd895609b030b7f8be62ec87f1c929894b6c6
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,7 @@ const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack module.exports = [ { - target: 'web', + target: 'webworker', entry: { bu...
fix: set UMD build to target 'webworker' (#<I>)
isomorphic-git_isomorphic-git
train
js
28689f38fb7cc8f3b85b6b1eb2337a1779e8ee95
diff --git a/demo/main.js b/demo/main.js index <HASH>..<HASH> 100644 --- a/demo/main.js +++ b/demo/main.js @@ -1233,9 +1233,6 @@ shakaDemo.Main = class { // The currently-selected asset changed, so update asset cards. this.dispatchEventWithName_('shaka-main-selected-asset-changed'); - await this.dr...
fix(demo): allow switch between UITextDisplayer and SimpleTextDisplayer (#<I>)
google_shaka-player
train
js
188c5f87762dc3a0ea956606b78d0328b8ffdbd4
diff --git a/src/foremast/runner.py b/src/foremast/runner.py index <HASH>..<HASH> 100755 --- a/src/foremast/runner.py +++ b/src/foremast/runner.py @@ -92,6 +92,7 @@ class ForemastRunner(object): 'trigger_job': self.trigger_job, 'prop_path': self.json_path, 'base': None, + ...
fix: Pass runway directory to Pipeline See also: #<I>
foremast_foremast
train
py
51189435dd51c4979a424d2a540764b967b05897
diff --git a/lib/creek/version.rb b/lib/creek/version.rb index <HASH>..<HASH> 100644 --- a/lib/creek/version.rb +++ b/lib/creek/version.rb @@ -1,3 +1,3 @@ module Creek - VERSION = "1.1" + VERSION = "1.1.1" end
chore: Bump up the gem version to <I> issue #<I>
pythonicrubyist_creek
train
rb
ea87e50067f90be5d7f891ed319235dc825b16b5
diff --git a/jellyfish/porter.py b/jellyfish/porter.py index <HASH>..<HASH> 100644 --- a/jellyfish/porter.py +++ b/jellyfish/porter.py @@ -123,7 +123,7 @@ class Stemmer(object): return self.cons(j) def cvc(self, i): - """ True iff i-2,i-1,i is consonent-vowel consonant + """ True iff i-2,i...
docs: fix simple typo, consonent -> consonant There is a small typo in jellyfish/porter.py. Should read `consonant` rather than `consonent`.
jamesturk_jellyfish
train
py
19313080354168fbfda78e2f31221979d5d754b2
diff --git a/core/src/elements/ons-switch.js b/core/src/elements/ons-switch.js index <HASH>..<HASH> 100644 --- a/core/src/elements/ons-switch.js +++ b/core/src/elements/ons-switch.js @@ -110,7 +110,7 @@ class SwitchElement extends BaseElement { } set checked(value) { - if (!!value != this._checkbox.checked) ...
style(ons-switch): Strict equality.
OnsenUI_OnsenUI
train
js
749f1a3da23448a954e7f3216630a24d1cb2c456
diff --git a/runner.go b/runner.go index <HASH>..<HASH> 100644 --- a/runner.go +++ b/runner.go @@ -678,7 +678,9 @@ func (r *caseRunner) runStepRequest(step *TStep) (stepResult *stepData, err erro if err != nil { return stepResult, err } - req.Header.Set("Content-Type", "application/json; charset=UTF-...
fix: custom content-type prior to default
HttpRunner_HttpRunner
train
go
ca5f3660556ba2d75f35e059394e3b1669cf1ad5
diff --git a/module/scaffold/bin/trv-scaffold.js b/module/scaffold/bin/trv-scaffold.js index <HASH>..<HASH> 100755 --- a/module/scaffold/bin/trv-scaffold.js +++ b/module/scaffold/bin/trv-scaffold.js @@ -1,4 +1,5 @@ #!/usr/bin/env node +process.chdir(__dirname.replace(/(.*)\/node_modules\/.*/, (a, b) => b)); require('...
feat(scaffold): Allowing for direct execution.
travetto_travetto
train
js
4739a127ce0e323589a3bafb3007c2081e39d436
diff --git a/src/Command/index.js b/src/Command/index.js index <HASH>..<HASH> 100644 --- a/src/Command/index.js +++ b/src/Command/index.js @@ -72,6 +72,7 @@ class Command { _.each(commandOptions._events, (option, name) => { options[name] = commandOptions[name] || null }) + this.setup() co(funct...
refactor(command): call setup method just before the handle method setup method is called before the handle method to setup environment for the command
adonisjs_ace
train
js
a7b44a15b313359ea3d0001ff1b7c5b9bfeb284b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -210,10 +210,10 @@ module.exports = { tokenStart: ! strict && WHITESPACE.has(characters[position - 1]) } - let j = 1, substringSkipCount = 0 - while (j < minLength) { - if (position + j + sub...
refactor: rename loop index variable
philbooth_surch
train
js
e789f62a090fcef2b7ae142ec80e01eab8978da1
diff --git a/lib/module.js b/lib/module.js index <HASH>..<HASH> 100644 --- a/lib/module.js +++ b/lib/module.js @@ -75,8 +75,8 @@ module.exports = function nuxtAdSense(moduleOptions = {}) { const adsenseScript = `{ google_ad_client: "${options.id}", - enable_page_level_ads: ${options.pageLevelAds ? 'true' :...
fix: page level ads error (#<I>)
nuxt-community_google-adsense-module
train
js,js
5cdcaddfa612d32182dc4f9d512f274d66c9a14f
diff --git a/lib/util/index.js b/lib/util/index.js index <HASH>..<HASH> 100644 --- a/lib/util/index.js +++ b/lib/util/index.js @@ -1,4 +1,5 @@ var http = require('http'); +var https = require('https'); var url = require('url'); var path = require('path'); var os = require('os'); @@ -1389,7 +1390,7 @@ function getRe...
refactor: getResponseBody
avwo_whistle
train
js
b46c550adbbe078646df09360b8fc4cf1a5de370
diff --git a/packages/d3fc-site/builder/copyReadmeAssets.js b/packages/d3fc-site/builder/copyReadmeAssets.js index <HASH>..<HASH> 100644 --- a/packages/d3fc-site/builder/copyReadmeAssets.js +++ b/packages/d3fc-site/builder/copyReadmeAssets.js @@ -10,7 +10,7 @@ const getImageFilename = (pathname) => path.join(apiDistFol...
chore: fix path to example assets on site
d3fc_d3fc
train
js
5a3f1c2f6d073824e058be0fffc77120b7ee94f0
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -5,13 +5,26 @@ require('shelljs/global'); // Commits the changelog if it updated // Does not push commit +function parseGitUri(uri) { + return uri.match(/https:..github.com\/([^./]+)\/([^./]+).*/) || + uri.match(/git@g...
fix: works with URIs of the form <EMAIL>
shelljs_changelog
train
js
28167b3b9d02676ae5da78be2b8344fccd94ec12
diff --git a/lib/rules/util.js b/lib/rules/util.js index <HASH>..<HASH> 100644 --- a/lib/rules/util.js +++ b/lib/rules/util.js @@ -1,5 +1,4 @@ var net = require('net'); -var fs = require('fs'); var http = require('http'); var path = require('path'); var rules = require('./index'); @@ -99,7 +98,6 @@ function parseHo...
refactor: fix eslint errors
avwo_whistle
train
js
50e270600756cca5380063e38247b28bf0265ee4
diff --git a/src/select/select.js b/src/select/select.js index <HASH>..<HASH> 100644 --- a/src/select/select.js +++ b/src/select/select.js @@ -127,7 +127,6 @@ export class MdSelect { $('.caret', $wrapper).removeClass('disabled'); $('input.select-dropdown', $wrapper).attr('disabled', null); $w...
fix(md-select): prevent dropdown from being initialized twice, fix #<I>
aurelia-ui-toolkits_aurelia-materialize-bridge
train
js
3f3e47ea5e49b4a4fa97e6dcb186e4303bfaba92
diff --git a/lib/rules/index.js b/lib/rules/index.js index <HASH>..<HASH> 100644 --- a/lib/rules/index.js +++ b/lib/rules/index.js @@ -191,18 +191,18 @@ function initRules(req) { var valueHeader = headers[VALUE_HEADER]; var hostHeader = headers[HOST_HEADER]; var keyHeader = headers[KEY_HEADER]; - delete heade...
refactor: initRules
avwo_whistle
train
js
314f33fe53575975a92c9e0c0ab9d761625101c4
diff --git a/src/directives/mask.js b/src/directives/mask.js index <HASH>..<HASH> 100644 --- a/src/directives/mask.js +++ b/src/directives/mask.js @@ -65,6 +65,7 @@ post: function($scope, $element, $attrs, controller) { promise.then(function() { // get initial options + ...
fix(async): Async loaded data was not showing mask.
candreoliveira_ngMask
train
js
dc307c9b63975175219a3f8f5079f72d360efe4d
diff --git a/packages/vuelidate/src/index.js b/packages/vuelidate/src/index.js index <HASH>..<HASH> 100644 --- a/packages/vuelidate/src/index.js +++ b/packages/vuelidate/src/index.js @@ -1,4 +1,4 @@ -import { watch, computed, getCurrentInstance, onBeforeMount, onBeforeUnmount, isRef, ref, reactive, isVue3 } from 'vue-d...
fix: support optionMergeStrategies, closes #<I> (#<I>)
vuelidate_vuelidate
train
js
33eb094c5963dc2fb67efab657cad216c62ba297
diff --git a/test/wsfed.tests.js b/test/wsfed.tests.js index <HASH>..<HASH> 100644 --- a/test/wsfed.tests.js +++ b/test/wsfed.tests.js @@ -99,7 +99,7 @@ describe('wsfed', function () { }); }); - describe('when using a different name identifier format', function (){ + describe('when a name identifier format ...
refactor: make tests descriptions more explicit
auth0_node-wsfed
train
js
9510b9fa073e59656d5a51fd74e67d3028b6693a
diff --git a/lib/prepare.js b/lib/prepare.js index <HASH>..<HASH> 100644 --- a/lib/prepare.js +++ b/lib/prepare.js @@ -224,7 +224,8 @@ async function resolveOptions (sourceDir) { data.frontmatter = frontmatter.data } if (frontmatter.excerpt) { - data.excerpt = frontmatter.excerpt + const { ht...
feat: support render $page.excerpt to HTML (close: #<I>)
vuejs_vuepress
train
js