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
6f432533690ccfb55c3e3a015f6193c1c63f3ec8
diff --git a/src/Theme/Theme.php b/src/Theme/Theme.php index <HASH>..<HASH> 100644 --- a/src/Theme/Theme.php +++ b/src/Theme/Theme.php @@ -52,7 +52,7 @@ class Theme implements ThemeInterface // Config view finder $paths = $app['config']['view.paths']; $this->view = $app->make('view'); - ...
fix: null value passed as array
lukeed_lumen-theme
train
php
e3c7a64b5932a2f37dd418402600a7e355421c76
diff --git a/src/bootstrap.js b/src/bootstrap.js index <HASH>..<HASH> 100644 --- a/src/bootstrap.js +++ b/src/bootstrap.js @@ -50,13 +50,13 @@ export default () => { // Creates necessary trackers createTrackers() + // Fires all shorthand fields in the options + collectors() + // Fires all untrack...
fix(bootstrap): apply any sets before delivering untracked events
MatteoGabriele_vue-analytics
train
js
7f969bfe522a01df4911deaf1ac55fd87f8cae15
diff --git a/src/define.js b/src/define.js index <HASH>..<HASH> 100644 --- a/src/define.js +++ b/src/define.js @@ -117,7 +117,7 @@ function property(key, desc) { }, set: (host, value) => setAttr(host, transform(value)), connect(host, _, invalidate) { - if (host[key] === defaultValue) { + if (!h...
fix(define): add attr check in condition for perf. improv.
hybridsjs_hybrids
train
js
f9251bf4d1da72ebf0e4de06ad11713126cf4b5b
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -22,7 +22,7 @@ module.exports = function(grunt) { path = require("path"); pkg = require("./package.json"); paths = { - dist: "./_dist", + dist: path.join("./_dist", pkg.version), ...
chore: packages in versioned directories
FineUploader_fine-uploader
train
js
1bdaa6248193915b4333ea4cc6ac2b901117f1f6
diff --git a/src/structures/Guild.js b/src/structures/Guild.js index <HASH>..<HASH> 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -216,7 +216,7 @@ class Guild extends Base { * @type {EmojiStore<Snowflake, Emoji>} */ this.emojis = new EmojiStore(this); - for (const emo...
fix(Guild): passing the constructor partial data from an invite no longer errors (#<I>)
discordjs_discord.js
train
js
cbf32252eed05968062e31cd54ab0e664095eb47
diff --git a/tasks/jekyll.js b/tasks/jekyll.js index <HASH>..<HASH> 100644 --- a/tasks/jekyll.js +++ b/tasks/jekyll.js @@ -19,6 +19,7 @@ module.exports = function (grunt) { 'watch': '--watch', 'auto': '--watch', 'no_watch': '--no-watch', + 'skip_initial_build': '--skip-initial-build', 'config': '--con...
feat: `--skip-initial-build` support
dannygarcia_grunt-jekyll
train
js
21e5435bf878125e3171acd7972391792defc5a2
diff --git a/lib/filter.js b/lib/filter.js index <HASH>..<HASH> 100644 --- a/lib/filter.js +++ b/lib/filter.js @@ -4,7 +4,7 @@ var autoprefixer = require('autoprefixer'); var minimatch = require('minimatch'); var postcss = require('postcss'); -module.exports = function(str, data) { +module.exports = async function(...
refactor: async/await
hexojs_hexo-autoprefixer
train
js
b26ac5c3825021de9cba8103345a312d473d9b48
diff --git a/src/checks/commitlint-travis.js b/src/checks/commitlint-travis.js index <HASH>..<HASH> 100644 --- a/src/checks/commitlint-travis.js +++ b/src/checks/commitlint-travis.js @@ -48,7 +48,7 @@ module.exports = async function main () { } } -async function git (args, options) { +function git (args, options)...
feat: require await in functions marked async (#<I>) Makes any function marked with the `async` keyword that does not include an `await` fail linting. This is because the `async` keyword causes the marked function to be wrapped in a promise which creates a vm microtask which introduces a small amount of latency....
ipfs_aegir
train
js,js
91122cc297b1864614e12fe459f533e084ee762f
diff --git a/src/Service/Model.php b/src/Service/Model.php index <HASH>..<HASH> 100644 --- a/src/Service/Model.php +++ b/src/Service/Model.php @@ -863,11 +863,11 @@ class Model extends QueryBuilder implements \ArrayAccess, \IteratorAggregate, \C /** * Executes the generated SQL and returns the found record c...
test: findAll 更正为查询多个id
miaoxing_plugin
train
php,php
c5b11ee49f6913f5b427572c8967b41e78ff9c1e
diff --git a/lib/sasl.js b/lib/sasl.js index <HASH>..<HASH> 100644 --- a/lib/sasl.js +++ b/lib/sasl.js @@ -66,8 +66,8 @@ Sasl.prototype._processFrame = function(frame) { var mechanisms = Array.isArray(frame.saslServerMechanisms) ? frame.saslServerMechanisms.map(function(m) { return m.value; }) : frame.saslS...
fix(sasl): pass errors to callback, don't throw
noodlefrenzy_node-amqp10
train
js
c5cba64b28b84003255a560d699b7ef91dc9ac94
diff --git a/python/lib/exifedit.py b/python/lib/exifedit.py index <HASH>..<HASH> 100644 --- a/python/lib/exifedit.py +++ b/python/lib/exifedit.py @@ -124,14 +124,13 @@ def add_mapillary_description(filename, username, email, assert("MAPSequenceUUID" in image_description) - if output_file is not None: + ...
fix(exifedit): Parse image description as dict
mapillary_mapillary_tools
train
py
3a280142eee4adbe9a5d16e5a16664d2641f7c52
diff --git a/src/main/java/fr/inria/gforge/spoon/Spoon.java b/src/main/java/fr/inria/gforge/spoon/Spoon.java index <HASH>..<HASH> 100644 --- a/src/main/java/fr/inria/gforge/spoon/Spoon.java +++ b/src/main/java/fr/inria/gforge/spoon/Spoon.java @@ -18,6 +18,7 @@ import org.apache.maven.plugins.annotations.Parameter; imp...
feat: Don't throw an SpoonException in noclasspathmode.
SpoonLabs_spoon-maven-plugin
train
java
ccefbfb48e6da5cdd700367acb180663239f51f2
diff --git a/lib/features/shortcuts.js b/lib/features/shortcuts.js index <HASH>..<HASH> 100644 --- a/lib/features/shortcuts.js +++ b/lib/features/shortcuts.js @@ -59,7 +59,7 @@ module.exports = function install(hostWindow) { document.addEventListener('keydown', preventDefaultShortcuts, false); document.addEvent...
fix(shortcuts): use event.key to get key (#<I>) As stated in [1] in French layout event.code returns 'KeyQ' for letter 'A'. Bug originally reported here: <URL>
GoogleChromeLabs_carlo
train
js
046c90047faaffb81e082632168667592a29e34d
diff --git a/engine/engine.go b/engine/engine.go index <HASH>..<HASH> 100644 --- a/engine/engine.go +++ b/engine/engine.go @@ -20,8 +20,8 @@ func New(reg *registry.Registry, events *registry.EventStream, mach *machine.Mac } func (engine *Engine) Run() { - engine.dispatcher.Listen() - engine.watcher.StartHeartbeat...
fix(Engine): Call Dispatcher.Listen last in Engine.Run
coreos_fleet
train
go
4c6f7b92b64095233bbf5d43c5038bab4af4fc74
diff --git a/webapps/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js b/webapps/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js index <HASH>..<HASH> 100644 --- a/webapps/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js +++ b/webapps/webapp/src/main/webapp/app/cockpit/pages/jobRetries.js @@ -51,7 +51,...
chore(jobs): Shows jobs with retry equals 0
camunda_camunda-bpm-platform
train
js
132ef7311e669b8b9467f49320c994145675571c
diff --git a/examples/webpack.config.js b/examples/webpack.config.js index <HASH>..<HASH> 100644 --- a/examples/webpack.config.js +++ b/examples/webpack.config.js @@ -29,7 +29,7 @@ var htmlPlugins = examples.map(function (ex) { module.exports = candelaLoaders({ entry: entry, output: { - path: 'build', + pa...
refactor(examples): build examples in top-level build directory
Kitware_candela
train
js
1d05744929ef2d9307f999a106f835138a1ed523
diff --git a/babel/plugins/transform-themeable.js b/babel/plugins/transform-themeable.js index <HASH>..<HASH> 100644 --- a/babel/plugins/transform-themeable.js +++ b/babel/plugins/transform-themeable.js @@ -142,7 +142,7 @@ module.exports = function ({ types: t }) { const css = STYLES.get(cssFilePath) ...
fix(themeable): Fix transform-themable with empty css files fixes INSTUI-<I> Test plan: - Try to include a empty css file in to a themeable component- - Then try to load the component - It should load Change-Id: I<I>abe<I>fe3abedfb<I>ef<I>be<I>df Reviewed-on: <URL>
instructure_instructure-ui
train
js
f31c551dde785d51d08c9b64972ee143af661ccb
diff --git a/src/fs.js b/src/fs.js index <HASH>..<HASH> 100644 --- a/src/fs.js +++ b/src/fs.js @@ -42,6 +42,9 @@ function watch(onChange) { if (event == 'rename') { event = fs.existsSync(file) ? 'add' : 'delete' } + if (event != 'add') { + delete cache[file] + } onChange(e...
fix: clear changed/deleted files from the cache
aleclarson_testpass
train
js
3c0d1ce8ea435b242b3715b54986bc352b1fdeb2
diff --git a/lib/imgix/client.rb b/lib/imgix/client.rb index <HASH>..<HASH> 100644 --- a/lib/imgix/client.rb +++ b/lib/imgix/client.rb @@ -11,19 +11,9 @@ module Imgix def initialize(options = {}) options = DEFAULTS.merge(options) - host = options[:host] - domain = options[:domain] + @domain...
fix: remove host-refs from client.rb, tests fail as expected
imgix_imgix-rb
train
rb
0ac3625e4fe9eae780ee666763bed4b3fd336b37
diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js index <HASH>..<HASH> 100644 --- a/lib/workers/branch/index.js +++ b/lib/workers/branch/index.js @@ -197,7 +197,7 @@ async function updateBranch(upgrades) { await removeStandaloneBranches(upgrades); const upgrade0 = upgrades[0]; // Delete th...
fix: more semanticCommitsEnabled -> semanticCommits
renovatebot_renovate
train
js,js
1a254a3293a11755fb854faa9cf0a424f2cb908a
diff --git a/query/stdlib/influxdata/influxdb/rules.go b/query/stdlib/influxdata/influxdb/rules.go index <HASH>..<HASH> 100644 --- a/query/stdlib/influxdata/influxdb/rules.go +++ b/query/stdlib/influxdata/influxdb/rules.go @@ -13,7 +13,7 @@ func init() { plan.RegisterPhysicalRules( PushDownRangeRule{}, PushDown...
feat(stdlib): enable the tag keys optimization for meta queries (#<I>)
influxdata_influxdb
train
go
3808e9aeaa0952ff9d606e648b472b124f12b5e0
diff --git a/scripts/build.js b/scripts/build.js index <HASH>..<HASH> 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -37,4 +37,7 @@ const copyPublicFiles = () => { Promise.each(webpackConfig, runWebpack) .then(copyPublicFiles) .then(() => console.log('Sku build complete!')) - .catch(() => process.exit(...
fix: Log build errors (#<I>)
seek-oss_sku
train
js
f62e855b574acb66676bfc65966a40605814229c
diff --git a/universalImport.js b/universalImport.js index <HASH>..<HASH> 100644 --- a/universalImport.js +++ b/universalImport.js @@ -29,7 +29,8 @@ function setHasPlugin() { var weakId = require.resolveWeak('react-universal-component') universal = __webpack_require__(weakId) } else { - universa...
fix: do not add module "react-universal-component" into the webpack build if it has not been used explicilty in the app (#<I>)
faceyspacey_babel-plugin-universal-import
train
js
6ae6e62dc51b5fbb076d9849b9876867f65d2da8
diff --git a/lib/geocoder/lookups/baidu_ip.rb b/lib/geocoder/lookups/baidu_ip.rb index <HASH>..<HASH> 100644 --- a/lib/geocoder/lookups/baidu_ip.rb +++ b/lib/geocoder/lookups/baidu_ip.rb @@ -1,4 +1,4 @@ -require 'geocoder/lookups/base' +require 'geocoder/lookups/baidu' require 'geocoder/results/baidu_ip' module Geo...
fix: baidu_ip lookups require 'geocoder/lookups/baidu'
alexreisner_geocoder
train
rb
b1758389e400fa93b8e71651cdd49c887b135679
diff --git a/packages/vuetify/test/unit/mixins/validatable.spec.js b/packages/vuetify/test/unit/mixins/validatable.spec.js index <HASH>..<HASH> 100644 --- a/packages/vuetify/test/unit/mixins/validatable.spec.js +++ b/packages/vuetify/test/unit/mixins/validatable.spec.js @@ -25,7 +25,7 @@ test('validatable.js', ({ mount...
test(Validatable): correct test structure
vuetifyjs_vuetify
train
js
50d2e4f3d1b31b36f0b811b3b2897eddd6237c6c
diff --git a/packages/site/pages/roadmap.js b/packages/site/pages/roadmap.js index <HASH>..<HASH> 100644 --- a/packages/site/pages/roadmap.js +++ b/packages/site/pages/roadmap.js @@ -23,17 +23,13 @@ const work = { tags: ['Core'] }, { - title: 'Drawer', + title: 'Avatar', tags: ['Compon...
refactor(site): update roadmap
pluralsight_design-system
train
js
686c0f1d1c0606c5cefb71f341737478c0c046f1
diff --git a/src/components/requests-in-flight-loader/requests-in-flight-loader.js b/src/components/requests-in-flight-loader/requests-in-flight-loader.js index <HASH>..<HASH> 100644 --- a/src/components/requests-in-flight-loader/requests-in-flight-loader.js +++ b/src/components/requests-in-flight-loader/requests-in-fl...
refactor(requests-in-flight-loader): adds loading-spinner from ui-kit
commercetools_merchant-center-application-kit
train
js
cb59044ed715cfc94f382beb915d6fce5c6bba19
diff --git a/packages/core/src/useChain.js b/packages/core/src/useChain.js index <HASH>..<HASH> 100644 --- a/packages/core/src/useChain.js +++ b/packages/core/src/useChain.js @@ -1,4 +1,4 @@ -import { useEffect } from 'react' +import { useLayoutEffect } from 'react' import { each } from 'shared' /** API @@ -6,7 +6,...
fix: call useLayoutEffect in useChain Since we prefer useLayoutEffect in every hook
react-spring_react-spring
train
js
c63849f0d2245a0c77971bf314f90f8efbee01bb
diff --git a/go/test/endtoend/cluster/mysqlctl_process.go b/go/test/endtoend/cluster/mysqlctl_process.go index <HASH>..<HASH> 100644 --- a/go/test/endtoend/cluster/mysqlctl_process.go +++ b/go/test/endtoend/cluster/mysqlctl_process.go @@ -140,6 +140,7 @@ func (mysqlctl *MysqlctlProcess) Stop() (err error) { func (mysq...
test: add log_dir flag to mysqlctl stop process to log the output in the correct directory
vitessio_vitess
train
go
7cfbbb0589383081c6e0802dab3b345f5074823d
diff --git a/src/list/index.js b/src/list/index.js index <HASH>..<HASH> 100644 --- a/src/list/index.js +++ b/src/list/index.js @@ -49,6 +49,10 @@ export default createComponent({ }; }, + updated() { + this.innerLoading = this.loading; + }, + mounted() { if (this.immediateCheck) { this.chec...
fix(List): sync loading state
youzan_vant
train
js
670de6f86ef98465916929f9ccd0e27b471c8795
diff --git a/src/components/DrawerMenu/DrawerMenu.js b/src/components/DrawerMenu/DrawerMenu.js index <HASH>..<HASH> 100644 --- a/src/components/DrawerMenu/DrawerMenu.js +++ b/src/components/DrawerMenu/DrawerMenu.js @@ -63,6 +63,7 @@ export const DrawerMenu = props => ( to={item.route} ...
fix: Readds comment out activated code
techcoop_react-material-site
train
js
9f0cd3a8228339ecc45b5cbad7801c1106ad2fae
diff --git a/js-given/spec/hidden-steps.spec.js b/js-given/spec/hidden-steps.spec.js index <HASH>..<HASH> 100644 --- a/js-given/spec/hidden-steps.spec.js +++ b/js-given/spec/hidden-steps.spec.js @@ -125,6 +125,7 @@ class HiddenChecksStage extends Stage { return this; } + @Quoted('message') an_er...
feat(hidden-steps): Improve scenario
jsGiven_jsGiven
train
js
73c41bf8afdc1e1fadce528b78d1d76d51e320c8
diff --git a/src/Event/EventProgress.php b/src/Event/EventProgress.php index <HASH>..<HASH> 100644 --- a/src/Event/EventProgress.php +++ b/src/Event/EventProgress.php @@ -156,7 +156,7 @@ class EventProgress extends Event implements EventInterface foreach ($matches[2] as $key => $value) { - $duration += ...
fix: in EventProgress fixed exponentiation
jack-theripper_transcoder
train
php
b287fed5a84dbe1e176eb32345acbb71ee032579
diff --git a/lib/utils.js b/lib/utils.js index <HASH>..<HASH> 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -67,7 +67,8 @@ const getTsJestConfig = function getTsJestConfig(config) { const createTransformer = require('ts-jest').createTransformer const tr = createTransformer() const { typescript } = tr.configs...
fix: force es5 for TS
vuejs_vue-jest
train
js
ba00e51517bd1a36af377f7eec0f1d4311d53534
diff --git a/lib/rbCFTypes.rb b/lib/rbCFTypes.rb index <HASH>..<HASH> 100644 --- a/lib/rbCFTypes.rb +++ b/lib/rbCFTypes.rb @@ -182,7 +182,7 @@ module CFPropertyList # get base64 decoded value def decoded_value - @raw_value ||= String.new(Base64.decode64(@value)) + @raw_value ||= Blob.new(Base64.de...
fix: CFData should create Blob objects, not string objects
ckruse_CFPropertyList
train
rb
4bfa4ba57c1a4517583314b0c7aeba0ef045320d
diff --git a/src/commands/new.js b/src/commands/new.js index <HASH>..<HASH> 100644 --- a/src/commands/new.js +++ b/src/commands/new.js @@ -110,7 +110,7 @@ async function command (context) { if ((boilerplateName || '').includes(path.sep)) { boilerplateName = filesystem.path(boilerplateName) } - const andross...
fix(new): Add closing paren to andross boilerplate description (#<I>)
infinitered_ignite
train
js
c4a0bcd9d292f199f78aaab166adb11ec2c740f8
diff --git a/lib/social_shares.rb b/lib/social_shares.rb index <HASH>..<HASH> 100644 --- a/lib/social_shares.rb +++ b/lib/social_shares.rb @@ -51,11 +51,11 @@ module SocialShares end def omit(url, excluded_networks = []) - selected_base(url, supported_networks - excluded_networks, false) + selecte...
feat: do not auto generate symbols coz they are not beeing autocollected by GC
Timrael_social_shares
train
rb
f5499a81a78822514782d0e1250056f6f7d78fe5
diff --git a/js/src/util/focustrap.js b/js/src/util/focustrap.js index <HASH>..<HASH> 100644 --- a/js/src/util/focustrap.js +++ b/js/src/util/focustrap.js @@ -20,7 +20,7 @@ const DefaultType = { } const NAME = 'focustrap' -const DATA_KEY = 'bs.focustrap' +const DATA_KEY = 'coreui.focustrap' const EVENT_KEY = `.${D...
refactor: change DATA_KEY
coreui_coreui
train
js
e6b4b6dad984ed634ec495b5d8e9d4ebfb58f394
diff --git a/app/modules/product/ProductController.js b/app/modules/product/ProductController.js index <HASH>..<HASH> 100644 --- a/app/modules/product/ProductController.js +++ b/app/modules/product/ProductController.js @@ -83,7 +83,8 @@ angular //FIX ME: the basket service should deal with the varian...
fix(variants): cart does not tell variants apart Fixes #<I>
sofa_sofa-couch-service
train
js
3a0eab45180be61e9640595ff786d938658db89c
diff --git a/src/geshi/smalltalk.php b/src/geshi/smalltalk.php index <HASH>..<HASH> 100644 --- a/src/geshi/smalltalk.php +++ b/src/geshi/smalltalk.php @@ -122,7 +122,7 @@ $language_data = array ( GESHI_AFTER => '' ), 3 => array( - GESHI_SEARCH => '\|([a-zA-Z0-9_\s]+)\|', //...
fix: | has to be escaped in Regular Expressions (See HSC)
GeSHi_geshi-1.0
train
php
349cd98b0a5517ffeb3bf2c277af4b2bae130565
diff --git a/spec/webview-spec.js b/spec/webview-spec.js index <HASH>..<HASH> 100644 --- a/spec/webview-spec.js +++ b/spec/webview-spec.js @@ -7,7 +7,7 @@ const { emittedOnce, waitForEvent } = require('./events-helpers'); const { ifdescribe, ifit, delay } = require('./spec-helpers'); const features = process._linke...
test: fix nativeModulesEnabled in spec/webview-spec.js (#<I>)
electron_electron
train
js
dcadf5daadbff0f3ee775a166f27b473b27b3824
diff --git a/src/style.js b/src/style.js index <HASH>..<HASH> 100644 --- a/src/style.js +++ b/src/style.js @@ -1,12 +1,19 @@ -import { useLayoutEffect, useContext } from 'react' -import { StyleSheetContext } from './stylesheet-registry' +import { useLayoutEffect } from 'react' +import { useStyleRegistry } from './style...
fix: Make `JSXStyle` return a noop if the registry context is not provided (#<I>)
zeit_styled-jsx
train
js
b9e0430b4317179572df53af0a04775df9a8253a
diff --git a/packages/razzle-plugin-less/index.js b/packages/razzle-plugin-less/index.js index <HASH>..<HASH> 100644 --- a/packages/razzle-plugin-less/index.js +++ b/packages/razzle-plugin-less/index.js @@ -109,7 +109,7 @@ module.exports = { options: hasPostCssConfig() ? undefined : { postcssOp...
fix(razzle-plugin-less): fix postcss plugin options
jaredpalmer_razzle
train
js
b01a73ecbafcdf49883fdd5736c27e2e4c480462
diff --git a/api/admin.py b/api/admin.py index <HASH>..<HASH> 100644 --- a/api/admin.py +++ b/api/admin.py @@ -63,7 +63,7 @@ class ContainerAdmin(admin.ModelAdmin): in the Django admin. """ date_hierarchy = 'created' - list_display = ('short_name', 'owner', 'cluster', 'app', 'state') + list_display...
fix(controller): fix container admin view A container does not have a cluster attribute, but an app does! fixes #<I>
deis_controller-sdk-go
train
py
932b0553caa03ccd34a0481fe6243ec29c09f23f
diff --git a/rules/file-no-broken-links.js b/rules/file-no-broken-links.js index <HASH>..<HASH> 100644 --- a/rules/file-no-broken-links.js +++ b/rules/file-no-broken-links.js @@ -78,7 +78,7 @@ async function fileNoBrokenLinks(fs, options) { // make the messages for the failing URLs const failingMessages =...
chore: add missing backtick quotes to formatting
todogroup_repolinter
train
js
aedc660b31b207268992532ab679ab713236cb22
diff --git a/webapps/camunda-webapp/webapp/src/main/java/org/camunda/bpm/webapp/impl/security/auth/UserAuthenticationResource.java b/webapps/camunda-webapp/webapp/src/main/java/org/camunda/bpm/webapp/impl/security/auth/UserAuthenticationResource.java index <HASH>..<HASH> 100644 --- a/webapps/camunda-webapp/webapp/src/m...
fix(webapp): make sure auth runs without auth related to SUPPORT-<I>
camunda_camunda-bpm-platform
train
java
789317869eae4fc3fafb52c71e3536253b6380fc
diff --git a/src/js/rawValidation.js b/src/js/rawValidation.js index <HASH>..<HASH> 100644 --- a/src/js/rawValidation.js +++ b/src/js/rawValidation.js @@ -7,6 +7,8 @@ const browser = require('./browser'); /** * rawValidation method. * + * @private + * * @param {String} fieldName * * @return {String|Boolean}...
fix: rawValidation matches
vulcan-estudios_vulcanval
train
js
75d4b9abd77cc3f4e51decb78f68a39f69fb3d00
diff --git a/packages/bench-trial/runner.js b/packages/bench-trial/runner.js index <HASH>..<HASH> 100755 --- a/packages/bench-trial/runner.js +++ b/packages/bench-trial/runner.js @@ -152,7 +152,7 @@ function reportFasterOpsperSec (suites) { const first = sorted[0] const second = sorted[1] - const diffMedian = ...
fix(bench-trial): Fix equation for calculating percentage increase / decrease (#<I>)
ViacomInc_data-point
train
js
0df8258d29eecbf844394f08db76320c270bc0cc
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -120,9 +120,9 @@ function renderEmoji(name) { : " "; return ( - `<span class="${options.className}" aria-hidden="true"${styles}>` + + `<span class="${options.className}"${styles}>` + `<span>${codepoints}</...
refactor: add aria-hidden
crimx_hexo-filter-github-emojis
train
js
e81a35ccb8381c3132872f2d461134e1f4481080
diff --git a/packages/netlify-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js b/packages/netlify-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js index <HASH>..<HASH> 100644 --- a/packages/netlify-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js +++ b/pack...
fix(core): custom widget validate bug in EditorControlPane (#<I>)
netlify_netlify-cms
train
js
fef2d3cf2a1bdd9ae8d112b4c09ae524ca03d947
diff --git a/src/passes/generate-ts.js b/src/passes/generate-ts.js index <HASH>..<HASH> 100644 --- a/src/passes/generate-ts.js +++ b/src/passes/generate-ts.js @@ -806,7 +806,7 @@ function generateTS(ast, options) { " description: string;", "}", "", - "type Expectation = ILiteralExpectation | ...
fix(generator): export type Expectation our automated mocha tests are failing as the typescript compiler fails with the message Parameter 'expected' of public static method from exported class has or is using private name 'Expectation' Since this type is consumed by external clients, with one of the latest TypeScr...
metadevpro_ts-pegjs
train
js
b037c89cd4f456796d683601564a84704dc33af6
diff --git a/src/tools/annotation/EllipticalRoiTool.js b/src/tools/annotation/EllipticalRoiTool.js index <HASH>..<HASH> 100644 --- a/src/tools/annotation/EllipticalRoiTool.js +++ b/src/tools/annotation/EllipticalRoiTool.js @@ -107,6 +107,7 @@ export default class EllipticalRoiTool extends BaseAnnotationTool { pointN...
feat: 🎸 hideHandlesOnMove hides handles whilst they are edited
cornerstonejs_cornerstoneTools
train
js
0087a29634f66af0a91b702b559ce6bbdf8f5060
diff --git a/lib/bro.js b/lib/bro.js index <HASH>..<HASH> 100644 --- a/lib/bro.js +++ b/lib/bro.js @@ -165,9 +165,18 @@ function Bro(bundleFile) { if (config.autoWatch) { log.info('registering rebuild (autoWatch=true)'); - w.on('update', function() { - log.debug('files changed'); - defe...
fix(plug-in): rebundle only if bundle internals changed Karma already triggers a bundle update whenever external files changed. We need to trigger an update ourselfes only if watchify reports changes on bundle internals. Closes #<I>
nikku_karma-browserify
train
js
6ed4c005206640f873f1cdfbd98a698a1311d2f5
diff --git a/packages/blueprint-gatekeeper/app/seeds/mongodb/env/development/$default.js b/packages/blueprint-gatekeeper/app/seeds/mongodb/env/development/$default.js index <HASH>..<HASH> 100644 --- a/packages/blueprint-gatekeeper/app/seeds/mongodb/env/development/$default.js +++ b/packages/blueprint-gatekeeper/app/see...
chore: removed created_by from seed model
onehilltech_blueprint
train
js
3f836e7280198342cdeb66d1c1008ff8f7d05496
diff --git a/src/components/project-data-locale/project-data-locale.js b/src/components/project-data-locale/project-data-locale.js index <HASH>..<HASH> 100644 --- a/src/components/project-data-locale/project-data-locale.js +++ b/src/components/project-data-locale/project-data-locale.js @@ -1,7 +1,7 @@ import React fro...
refactor(app-shell-connectors): use wrapDisplayName
commercetools_merchant-center-application-kit
train
js
4587efbd9722be05f52ce9a2df00f6a2af7f4e4d
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -179,6 +179,10 @@ function connect(options, cb) { exports.connect = connect; +function _preventThrowOutError(socket) { + preventThrowOutError(socket._tlssock || socket); +} + function preventThrowOut...
refactor: Refine socks agent
avwo_whistle
train
js
62e81514e4f8c59f738952ae7c430212afd4d685
diff --git a/lib/postcss-plugin.js b/lib/postcss-plugin.js index <HASH>..<HASH> 100644 --- a/lib/postcss-plugin.js +++ b/lib/postcss-plugin.js @@ -42,7 +42,9 @@ function retinaBackgroundImage(options) { const ruleSource = root.source.input.file; const retinaSuffix = options.retinaSuffix || DEFAULT_RETINA_SUFF...
fix: picked option was always set to true due to bad comparison
alexlafroscia_postcss-retina-bg-img
train
js
a82343b27abef7e47aa0d3520cc4733301a35ff6
diff --git a/src/cryptojwt/jws/dsa.py b/src/cryptojwt/jws/dsa.py index <HASH>..<HASH> 100644 --- a/src/cryptojwt/jws/dsa.py +++ b/src/cryptojwt/jws/dsa.py @@ -1,9 +1,10 @@ +import sys + from cryptography.exceptions import InvalidSignature from cryptography.hazmat.primitives import hashes from cryptography.hazmat.pri...
fix: cryptography warning on int_to_bytes
openid_JWTConnect-Python-CryptoJWT
train
py
79d3a62d55d661c0fa3e154216b5f68475d583ef
diff --git a/packages/ringcentral-widgets/containers/DialerAndCallsTabContainer/index.js b/packages/ringcentral-widgets/containers/DialerAndCallsTabContainer/index.js index <HASH>..<HASH> 100644 --- a/packages/ringcentral-widgets/containers/DialerAndCallsTabContainer/index.js +++ b/packages/ringcentral-widgets/containe...
refactor(DialerAndCallsTabContainer): judge `applicable` by callMonitor (#<I>) Since we showing the call items in all calls page by presence API, then we should show tabs by the same design
ringcentral_ringcentral-js-widgets
train
js
b01cbc9cfa268f6190d6cee75a397314769921c8
diff --git a/core/src/elements/ons-pull-hook.js b/core/src/elements/ons-pull-hook.js index <HASH>..<HASH> 100755 --- a/core/src/elements/ons-pull-hook.js +++ b/core/src/elements/ons-pull-hook.js @@ -16,6 +16,7 @@ limitations under the License. */ import util from 'ons/util'; +import platform from 'ons/platform'; i...
fix(ons-pull-hook): fix flickering on iOS
OnsenUI_OnsenUI
train
js
7c5ba1799b363a5d70febcb1d18282d094ad1c2b
diff --git a/lib/withGoogleMap.js b/lib/withGoogleMap.js index <HASH>..<HASH> 100644 --- a/lib/withGoogleMap.js +++ b/lib/withGoogleMap.js @@ -68,7 +68,7 @@ function _interopRequireDefault(obj) { /* global google */ function withGoogleMap(BaseComponent) { - var factory = (0, _recompose.createEagerFactory)(BaseComp...
chore(lib): compile from src with `babel`
tomchentw_react-google-maps
train
js,js
10468d4f85baa219581b080eb9ed98a4731e8d92
diff --git a/packages/application-shell/src/components/authenticated/authenticated.js b/packages/application-shell/src/components/authenticated/authenticated.js index <HASH>..<HASH> 100644 --- a/packages/application-shell/src/components/authenticated/authenticated.js +++ b/packages/application-shell/src/components/auth...
fix(app-shell): fetch policy on AmILoggedIn (#<I>)
commercetools_merchant-center-application-kit
train
js
f20df03c624c003edf652f8022f757cc5ff90e5a
diff --git a/clb/example_test.go b/clb/example_test.go index <HASH>..<HASH> 100644 --- a/clb/example_test.go +++ b/clb/example_test.go @@ -4,7 +4,7 @@ import ( "fmt" ) -func ExampleRoundRobin() { +func Example() { srvName := "foo.service.fliglio.com" c := NewRoundRobinClb("8.8.8.8", "53") address, err := c.G...
style(tests): rearranging tests
benschw_srv-lb
train
go
e9d437ccde7a6005953ea0df1ade14e05a21ecd1
diff --git a/packages/button/src/constants/colorTypes.js b/packages/button/src/constants/colorTypes.js index <HASH>..<HASH> 100644 --- a/packages/button/src/constants/colorTypes.js +++ b/packages/button/src/constants/colorTypes.js @@ -12,8 +12,8 @@ import { export default { [PRIMARY]: { - color: colorConstants...
feat(Button): use tangerine as primary color affects: @crave/farmblocks-button, @crave/farmblocks-theme
CraveFood_farmblocks
train
js,js
2e5d6f7f5028b226c963e46cd7b62f6c2c07009a
diff --git a/packages/bonde-admin-canary/src/services/auth/api.js b/packages/bonde-admin-canary/src/services/auth/api.js index <HASH>..<HASH> 100644 --- a/packages/bonde-admin-canary/src/services/auth/api.js +++ b/packages/bonde-admin-canary/src/services/auth/api.js @@ -39,6 +39,12 @@ const AuthAPI = { logout: () =>...
feat(admin-canary): logout on cross-storage
nossas_bonde-client
train
js
68b2a102808eaae5344caa980cdc3cf36ae4f195
diff --git a/memote/suite/collect.py b/memote/suite/collect.py index <HASH>..<HASH> 100644 --- a/memote/suite/collect.py +++ b/memote/suite/collect.py @@ -47,7 +47,7 @@ class DummyDict(object): pass -class ResultCollectionPlugin: +class ResultCollectionPlugin(object): """ Local pytest plugin that...
fix: make pytest plugin inherit from object (#<I>)
opencobra_memote
train
py
464ebc4277a32a40e9f5169c4ded817b96167abc
diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js index <HASH>..<HASH> 100644 --- a/lib/platform/github/index.js +++ b/lib/platform/github/index.js @@ -472,9 +472,10 @@ async function ensureIssueClosing(title) { logger.debug(`ensureIssueClosing()`); const issueList = await getIssueList(); ...
fix: close issue with number, not id
renovatebot_renovate
train
js
39ecf9f37847b065d9ee4c040327ffcec917ff10
diff --git a/test/cypress/integration/basic/component_spec.js b/test/cypress/integration/basic/component_spec.js index <HASH>..<HASH> 100644 --- a/test/cypress/integration/basic/component_spec.js +++ b/test/cypress/integration/basic/component_spec.js @@ -7,7 +7,7 @@ describe('Single component', () => { describe('pr...
test: fix cypress tests
vue-styleguidist_vue-styleguidist
train
js
2d0536a2e07a54e402d1f1ac46720e2b9423832c
diff --git a/packages/node_modules/@webex/webex-core/src/interceptors/redirect.js b/packages/node_modules/@webex/webex-core/src/interceptors/redirect.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/webex-core/src/interceptors/redirect.js +++ b/packages/node_modules/@webex/webex-core/src/interceptors/r...
fix(webex-core): improve redirect interceptor conditional Improve the redirect interceptor conditional to perform more checking to prevent additional errors when the passed in options parameter does not exist.
webex_spark-js-sdk
train
js
255905baa0316e216e149342cc1cdfe13c3cdda5
diff --git a/packages/cerebral/src/utils.js b/packages/cerebral/src/utils.js index <HASH>..<HASH> 100644 --- a/packages/cerebral/src/utils.js +++ b/packages/cerebral/src/utils.js @@ -240,10 +240,7 @@ export function createResolver (getters) { }, path (arg) { if (arg instanceof Tag) { - return ar...
fix(Tags): use all getters within createResolver getPath
cerebral_cerebral
train
js
1dd3a4f20b16345f3891b163cc03b0e6b110f2c0
diff --git a/djstripe/models/core.py b/djstripe/models/core.py index <HASH>..<HASH> 100644 --- a/djstripe/models/core.py +++ b/djstripe/models/core.py @@ -2327,7 +2327,7 @@ class Price(StripeModel): tier_1 = self.tiers[0] flat_amount_tier_1 = tier_1["flat_amount"] formatted_unit_a...
fix: unit_amount value on tiered pricing when when only flat fee is set
dj-stripe_dj-stripe
train
py
4d4f57b59c845f4e5a400f336a4fef7fb9f44c5b
diff --git a/library/styleguideComponents/SectionHeading/index.js b/library/styleguideComponents/SectionHeading/index.js index <HASH>..<HASH> 100644 --- a/library/styleguideComponents/SectionHeading/index.js +++ b/library/styleguideComponents/SectionHeading/index.js @@ -14,11 +14,18 @@ const GithubStarsBadge = GithubSt...
fix: fixed initial page (#<I>)
90milesbridge_react-rainbow
train
js,js
92632956d13d1a7545f3dbbf2c1002b062641df1
diff --git a/internal/builders/golang/build_test.go b/internal/builders/golang/build_test.go index <HASH>..<HASH> 100644 --- a/internal/builders/golang/build_test.go +++ b/internal/builders/golang/build_test.go @@ -411,7 +411,7 @@ func TestProcessFlags(t *testing.T) { "-testflag=flag", } - flags, err := processF...
chore: fix lint issues
goreleaser_goreleaser
train
go
2dc75ed6490b3d88139ec00e5154c5399edb4d27
diff --git a/lib/broker-agent.js b/lib/broker-agent.js index <HASH>..<HASH> 100755 --- a/lib/broker-agent.js +++ b/lib/broker-agent.js @@ -133,9 +133,13 @@ BrokerAgent.prototype._getAllBrokerObjects = function(type) { return this._classQuery(type) .then(function(objects) { convertBuffersToStrings(objects...
fix(getAllBrokerObjects): return list if working with single value
mbroadst_node-qmf2
train
js
034164ba1016eb342f000d3ca94dd301e4a9bf1b
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100755 --- a/webpack.config.js +++ b/webpack.config.js @@ -12,7 +12,8 @@ module.exports = { }, externals: { // Use external version of React - "react": "React" + 'react': 'react', + 'react-dom': 'react-dom' }, modu...
fix(webpack): Use external `react` and `react-dom` Prevent bundling React and ReactDOM to use a single version of React if one is already included. Refs <URL>
scup_atellier
train
js
d1cce3883b244994de4c1afaf2c4764e3f939f55
diff --git a/lib/ditty/controllers/main.rb b/lib/ditty/controllers/main.rb index <HASH>..<HASH> 100644 --- a/lib/ditty/controllers/main.rb +++ b/lib/ditty/controllers/main.rb @@ -2,6 +2,7 @@ require 'ditty/controllers/application' require 'ditty/services/email' +require 'ditty/services/authentication' require 'sec...
fix: Ensure the authentication service is loaded
EagerELK_ditty
train
rb
6e7c39d5ca290fc6e5163038fc07ae2923d014e9
diff --git a/rakelib/kokoro/kokoro.rb b/rakelib/kokoro/kokoro.rb index <HASH>..<HASH> 100644 --- a/rakelib/kokoro/kokoro.rb +++ b/rakelib/kokoro/kokoro.rb @@ -43,7 +43,7 @@ class Kokoro < Command run "bundle exec rake ci", 1800 # TODO: Remove date requirement require "date" - next unle...
chore: Kick linkinator can till after the fixit 2 weeks
googleapis_google-cloud-ruby
train
rb
47a4995a88cb970068272dda10d06f1663a35f90
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -168,7 +168,7 @@ gulp.task('push:doc', () => { return exec(`cd ./site/dist && git add -A; TIME=\`date +"%Y-%m-%d %H:%M:%S"\`; - git commit -am "build: \${TIME}"; + git commit -...
chore: update build script for windows'
ksc-fe_kpc
train
js
580458d831e8edea1f9d2c11797a8ef81d6d691f
diff --git a/huawei_lte_api/Connection.py b/huawei_lte_api/Connection.py index <HASH>..<HASH> 100644 --- a/huawei_lte_api/Connection.py +++ b/huawei_lte_api/Connection.py @@ -35,7 +35,11 @@ class Connection(Session): def close(self) -> None: if self.user_session: - self.user_session.close() +...
fix(Connection): close Session even if UserSession close raises Logout can raise for various reasons, including but not limited to being unsupported by the device in the first place, and trying while already being logged out.
Salamek_huawei-lte-api
train
py
da611de398ccb5784b113625d08b30858ed372c7
diff --git a/modules/tabs/js/tabs_directive.js b/modules/tabs/js/tabs_directive.js index <HASH>..<HASH> 100644 --- a/modules/tabs/js/tabs_directive.js +++ b/modules/tabs/js/tabs_directive.js @@ -80,11 +80,11 @@ }, function(_newLinks) { lxTabs.viewMode = angular.isDefined(_newLinks) ? 'sep...
fix(tabs): fix the update of tabs
lumapps_lumX
train
js
9845bda434bb81a56b7a5fa23664f1de4030de0e
diff --git a/src/theme/font-awesome.config.js b/src/theme/font-awesome.config.js index <HASH>..<HASH> 100644 --- a/src/theme/font-awesome.config.js +++ b/src/theme/font-awesome.config.js @@ -13,5 +13,6 @@ module.exports = { icons: true, larger: true, path: true, + animated: true, } };
fix(font-awesome-webpack): Fixed icon animation Icon animation was disabled in the font-awesome-webpack config file, but is needed in order to make the icon of the green "refresh widgets" button spin while refreshing the widges.
bdefore_universal-redux
train
js
abc4044dc972746292dad107009bc67223b88f86
diff --git a/samples/productSearch/importProductSets.js b/samples/productSearch/importProductSets.js index <HASH>..<HASH> 100644 --- a/samples/productSearch/importProductSets.js +++ b/samples/productSearch/importProductSets.js @@ -29,7 +29,7 @@ function main(projectId, location, gcsUri) { */ // const project...
fix: comment about gcsUri (#<I>) * fix: comment about gcsUri * doc: add wsp
googleapis_nodejs-vision
train
js
a59e9f6712bffff6b5400fce030634b300612c2b
diff --git a/core/dev-utils/formatWebpackMessages.js b/core/dev-utils/formatWebpackMessages.js index <HASH>..<HASH> 100644 --- a/core/dev-utils/formatWebpackMessages.js +++ b/core/dev-utils/formatWebpackMessages.js @@ -82,7 +82,8 @@ function formatMessage(message, isError) { // exception of stacks containing `webpac...
fix: do not remove error stacks from webpack
egoist_poi
train
js
27196ddb55c07a0d98d5c0d82f1a30f6cdc1ef6a
diff --git a/components/collapse/index.js b/components/collapse/index.js index <HASH>..<HASH> 100644 --- a/components/collapse/index.js +++ b/components/collapse/index.js @@ -28,7 +28,7 @@ export default class Collapse extends Intact { const {value, accordion} = this.get(); let _value; if (ac...
fix(Collapse): can not collapse when accrodion is on, close #<I>
ksc-fe_kpc
train
js
b8e26f6f91c249dd1610b89d872098931e47708a
diff --git a/src/geshi/d.php b/src/geshi/d.php index <HASH>..<HASH> 100644 --- a/src/geshi/d.php +++ b/src/geshi/d.php @@ -134,7 +134,7 @@ $language_data = array ( 'extern', 'false', 'finally', 'function', 'import', 'in', 'inout', 'interface', 'invariant', 'is', 'mixin...
fix: Missing keyword ref for language d
GeSHi_geshi-1.0
train
php
d78514914e50e3e209c423edb98e2709d356af43
diff --git a/src/layer/relu.js b/src/layer/relu.js index <HASH>..<HASH> 100644 --- a/src/layer/relu.js +++ b/src/layer/relu.js @@ -35,7 +35,7 @@ export default class Relu extends Activation { this.width = width this.height = height this.validate() - if (depth && depth > 1) { + if (depth > 1) { ...
fix: simplify some variable usage in `Relu`
BrainJS_brain.js
train
js
138ad94f39d93d9f9446505744e4c4fc2f19ba3e
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,7 @@ import asInput from './asInput'; import Button from './Button'; import CheckBox from './CheckBox'; +import CheckBoxGroup from './CheckBoxGroup'; import Dropdown from './Dropdown'; import Hyper...
fix(input): add missing exports to index.js (#<I>)
edx_paragon
train
js
5d25dc5504dd732c0d6c429e4f70fd15b044aa7d
diff --git a/packages/node_modules/@webex/plugin-meetings/src/common/collection.js b/packages/node_modules/@webex/plugin-meetings/src/common/collection.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/plugin-meetings/src/common/collection.js +++ b/packages/node_modules/@webex/plugin-meetings/src/common...
fix(meeting): collection typo
webex_spark-js-sdk
train
js
0ffe74fc17761f8f6fa0a003629f53d117ae5056
diff --git a/addon/components/-private/linked-list-item.js b/addon/components/-private/linked-list-item.js index <HASH>..<HASH> 100644 --- a/addon/components/-private/linked-list-item.js +++ b/addon/components/-private/linked-list-item.js @@ -45,7 +45,19 @@ export default class LinkedListItemComponent extends Component...
fix(linked-item): handle rootURLs and hash locations
adfinis-sygroup_ember-uikit
train
js
f64098c85c2a6d75318ebdf4e9f3acfd42be3ae1
diff --git a/alot/helper.py b/alot/helper.py index <HASH>..<HASH> 100644 --- a/alot/helper.py +++ b/alot/helper.py @@ -214,7 +214,12 @@ def pretty_datetime(d): def call_cmd(cmdlist, stdin=None): """ - get a shell commands output, error message and return value + get a shell commands output, error message ...
docs: added warning for call_cmd helper
pazz_alot
train
py
f911c0b89c6e0c41b6ad218c9235d8706c36a1b2
diff --git a/bash_completionsV2.go b/bash_completionsV2.go index <HASH>..<HASH> 100644 --- a/bash_completionsV2.go +++ b/bash_completionsV2.go @@ -150,7 +150,7 @@ __%[1]s_process_completion_results() { __%[1]s_handle_special_char "$cur" = # Print the activeHelp statements before we finish - if [ ${#activ...
fix(bash-v2): activeHelp length check syntax (#<I>) ```shell $ set -u $ foo=() $ echo ${#foo} bash: foo: unbound variable echo ${#foo[*]} 0 ``` The above shows that an empty array needs the suffix `[*]` when checking its length, or else it is considered unbound.
spf13_cobra
train
go
ba12eb2b1bdb95f7a2ebc95926bb8d74f4520182
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -850,7 +850,9 @@ } function handleEnd() { - fireEvent('scrollEnd', startX, startY); + if (contentScrolled) { + fireEvent('scrollE...
fix: missing scrollEnd event when snap to page
misonou_jquery-scrollable
train
js
a6537b3690eb6d7b954b4266eb0e635cd37bc8b2
diff --git a/packages/__examples__/renderExample.js b/packages/__examples__/renderExample.js index <HASH>..<HASH> 100644 --- a/packages/__examples__/renderExample.js +++ b/packages/__examples__/renderExample.js @@ -48,15 +48,7 @@ export function renderExample({ > <Component {...componentProps} /> <To...
docs: revert userAgent log for chromatic debugging
instructure_instructure-ui
train
js
4131d46e95ff727fbf341f85066740ba7fa8866c
diff --git a/lib/metrics/helpers/processMetricsHelpers.js b/lib/metrics/helpers/processMetricsHelpers.js index <HASH>..<HASH> 100644 --- a/lib/metrics/helpers/processMetricsHelpers.js +++ b/lib/metrics/helpers/processMetricsHelpers.js @@ -3,11 +3,17 @@ function aggregateByObjectName(list) { const data = {}; - for ...
fix: guard against missing constructor Fixes #<I>
siimon_prom-client
train
js
f5af1366e5897ac87ceedb8b2f7d971ee82331fe
diff --git a/src/lib/define.js b/src/lib/define.js index <HASH>..<HASH> 100644 --- a/src/lib/define.js +++ b/src/lib/define.js @@ -14,8 +14,5 @@ export function define(tagName, Component, config) { get: () => tagName, }); registry.define(tagName, Component, config); - // if (registry.native) { - ...
refactor: always use polyfilled element when no using CE specs
chialab_dna
train
js,js
7579157a37eafa86b22d0bc67ca0ccd6743443e0
diff --git a/src/installer.js b/src/installer.js index <HASH>..<HASH> 100644 --- a/src/installer.js +++ b/src/installer.js @@ -44,11 +44,11 @@ var spawn = function (options, command, args, callback) { }) spawnedProcess.on('error', function (err) { - if (err.name = 'ENOENT') { + if (err.name === 'ENOENT') ...
fix(installer-errors): update per pr discussion
electron-userland_electron-installer-debian
train
js
cc9cc0bef060db36d940c3c001b43b2a15069861
diff --git a/ui/src/components/select/QSelect.js b/ui/src/components/select/QSelect.js index <HASH>..<HASH> 100755 --- a/ui/src/components/select/QSelect.js +++ b/ui/src/components/select/QSelect.js @@ -1438,10 +1438,8 @@ export default createComponent({ showPopup, floatingLabel: computed(() => - ...
fix(QSelect): float label when there is inputValue #<I> (#<I>)
quasarframework_quasar
train
js
af9e2b3f0f4156fd52ed4444b96e2b8c0932c658
diff --git a/src/core/observer/dep.js b/src/core/observer/dep.js index <HASH>..<HASH> 100644 --- a/src/core/observer/dep.js +++ b/src/core/observer/dep.js @@ -49,9 +49,9 @@ export default class Dep { } } -// the current target watcher being evaluated. -// this is globally unique because there could be only one -/...
chore: minor comment cleanup (#<I>)
kaola-fed_megalo
train
js
bceaae3718e8fb86ee42eea2324677ea0c374153
diff --git a/dist/ivh-treeview.js b/dist/ivh-treeview.js index <HASH>..<HASH> 100644 --- a/dist/ivh-treeview.js +++ b/dist/ivh-treeview.js @@ -359,7 +359,7 @@ angular.module('ivh.treeview').directive('ivhTreeview', ['ivhTreeviewMgr', funct ng.forEach([ 'onCbChange', - 'onToggle', + 'onTo...
style: Remove trailing comma
iVantage_angular-ivh-treeview
train
js,js
2f1e85bf332d8b2c86d182b4078bd576cc607694
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1111,7 +1111,7 @@ class Encore { * Encore.enableEslintLoader(() => {}, { * // set optional Encore-specific options, for instance: * - * // lint `.vue` files + * // lint `.vue` files, see ...
chore: add comment for making .vue files lint working
symfony_webpack-encore
train
js