code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/magefile/actions.go b/magefile/actions.go @@ -121,6 +121,12 @@ func Delete() error { return SpartaCommand("delete") } +// Explore opens up the terminal GUI +func Explore() error { + // Get the bucketName + return SpartaCommand("explore") +} + // Status returns a report for the given status func Status(plai...
0
diff --git a/api/lib/services/agent/agent.converse-generate-response.service.js b/api/lib/services/agent/agent.converse-generate-response.service.js @@ -178,6 +178,9 @@ module.exports = async function ({ agent, action, context, currentFrame, rasaRes } const missingKeywords = _.filter(requiredSlots, (slot) => { + if (cu...
9
diff --git a/src/pages/EnablePayments/AdditionalDetailsStep.js b/src/pages/EnablePayments/AdditionalDetailsStep.js @@ -170,28 +170,11 @@ class AdditionalDetailsStep extends React.Component { if (this.props.walletAdditionalDetails.errorCode === CONST.WALLET.ERROR.SSN) { if (!ValidationUtils.isValidSSNFullNine(values[INP...
9
diff --git a/src/components/FullPageOfflineBlockingView.js b/src/components/FullPageOfflineBlockingView.js @@ -10,6 +10,7 @@ import * as Expensicons from './Icon/Expensicons'; import themeColors from '../styles/themes/default'; import styles from '../styles/styles'; import compose from '../libs/compose'; +import variab...
4
diff --git a/examples/layerFadingOpacity/layerFadingOpacity.html b/examples/layerFadingOpacity/layerFadingOpacity.html 'text': ri.name, 'size': 16, 'outline': 0, - //'face': "Lucida Console", - 'weight': "bold", 'color': "black", 'align': "center" },
1
diff --git a/README.md b/README.md @@ -91,7 +91,7 @@ framework with the [Chai](http://www.chaijs.com/) assertion library for unit tests. To run unit tests in Spark: 1. Navigate to the root of the Spark-Core or Spark-Extras repository -2. Make sure you have run `npm install` already +2. Run `npm install` if you have not...
3
diff --git a/src/components/drawing/index.js b/src/components/drawing/index.js @@ -1028,7 +1028,7 @@ drawing.setClipUrl = function(s, localId, gd) { var context = gd._context; var baseUrl = context._exportedPlot ? '' : (context._baseUrl || ''); - s.attr('clip-path', 'url(' + baseUrl + '#' + localId + ')'); + s.attr('cl...
0
diff --git a/scenes/street.scn b/scenes/street.scn "position": [-2, 1, 2], "quaternion": [0, 0.7071067811865475, 0, 0.7071067811865476], "start_url": "https://webaverse.github.io/helm/" - }, - { - "position": [0, -60, 0], - "quaternion": [0, 0, 0, 1], - "start_url": "../metaverse_modules/land/", - "components": [ - { -...
2
diff --git a/test/jasmine/tests/geo_test.js b/test/jasmine/tests/geo_test.js @@ -1352,6 +1352,68 @@ describe('Test event property of interactions on a geo plot:', function() { }); }); +describe('Test geo base layers', function() { + afterEach(destroyGraphDiv); + + it('should clear obsolete features and layers on *geo.s...
0
diff --git a/views/products.blade.php b/views/products.blade.php <th>{{ $__t('QU stock') }}</th> <th>{{ $__t('QU factor') }}</th> <th>{{ $__t('Product group') }}</th> - <th>{{ $__t('Barcode(s)') }}</th> @include('components.userfields_thead', array( 'userfields' => $userfields <td> @if(!empty($product->product_group_id...
2
diff --git a/src/plots/gl3d/scene.js b/src/plots/gl3d/scene.js @@ -97,7 +97,7 @@ proto.tryCreatePlot = function() { gl: scene.gl, glOptions: { preserveDrawingBuffer: isMobile, - premultipliedAlpha: false, + premultipliedAlpha: true, antialias: true }, container: scene.container,
12
diff --git a/.travis.yml b/.travis.yml @@ -38,6 +38,7 @@ branches: # Before install, failures in this section will result in build status 'errored' before_install: + - npm i -g npm - npm install || exit 1 - docker run --rm -v "$PWD:/app" composer install - |
3
diff --git a/packages/mjml-cli/src/client.js b/packages/mjml-cli/src/client.js @@ -90,7 +90,15 @@ export default async () => { .help() .version(`mjml-core: ${coreVersion}\nmjml-cli: ${cliVersion}`).argv - const config = Object.assign(DEFAULT_OPTIONS, argv.c) + let fonts + + try { + fonts = argv.c && argv.c.fonts && JSO...
11
diff --git a/config/sidebar.yml b/config/sidebar.yml @@ -1070,25 +1070,28 @@ articles: url: /monitor-auth0/streams children: - title: AWS EventBridge - url: 'https://marketplace.auth0.com/integrations/amazon-log-streaming' - forceFullReload: true - external: true + url: /monitor-auth0/streams/stream-logs-to-amazon-even...
2
diff --git a/app/hotels/src/singleHotel/roomPicker/RoomPicker.js b/app/hotels/src/singleHotel/roomPicker/RoomPicker.js @@ -15,7 +15,7 @@ const styles = StyleSheet.create({ button: { backgroundColor: '#0097a9', width: 60, - paddingVertical: 10, + paddingVertical: 16, alignItems: 'center', }, minusButton: {
0
diff --git a/src/reducers/allAccounts.js b/src/reducers/allAccounts.js import { handleActions, combineActions } from 'redux-actions' import reduceReducers from 'reduce-reducers' -import { refreshAccountExternal } from '../actions/account' +import { refreshAccountExternal, updateStakingAccount, updateStakingLockup } fro...
9
diff --git a/app/helpers/wiki_pages_helper.rb b/app/helpers/wiki_pages_helper.rb +# frozen_string_literal: true + module WikiPagesHelper acts_as_wiki_pages_helper def wiki_content( text ) @@ -10,13 +12,17 @@ module WikiPagesHelper def wiki_nav( text ) text.gsub( /\{\{nav.*?\}\}/ ) do | match | - page_titles = match[/na...
11
diff --git a/lib/winston/logger.js b/lib/winston/logger.js @@ -359,14 +359,14 @@ Logger.prototype.query = function query(options, callback) { options = options || {}; const results = {}; - const query = common.clone(options.query) || {}; + const queryObject = common.clone(options.query) || {}; // // Helper function to ...
10
diff --git a/.github/workflows/windows_test_npm_install.yml b/.github/workflows/windows_test_npm_install.yml @@ -184,7 +184,7 @@ jobs: . "${{ env.NVS_HOME }}/nvs.sh" && nvs add ${{ matrix.NODE_VERSION }} echo '' echo 'Setting Node.js default executable...' - mkdir -p /usr/local/bin + mkdir -p -m 775 /usr/local/bin . "$...
12
diff --git a/dapp/src/constants/Contract.js b/dapp/src/constants/Contract.js @@ -20,9 +20,9 @@ export const gasLimits = { // when the amount minted using multiple coins triggers the rebase function and not the allocate function MINT_MULTIPLE_REBASE_GAS_LIMIT: 957285, // when the amount minted using a single coin trigge...
9
diff --git a/lib/components/field-container.js b/lib/components/field-container.js @@ -2,9 +2,10 @@ import React from 'react'; import fieldMixin from '../mixins/field'; -// This component abstracts away our ugly old mixins into a component with a -// render callback. That way, we can eventually deprecate the mixins and...
7
diff --git a/src/pages/using-spark/guides/writing-meaningful-web-content-with-semantic-html.mdx b/src/pages/using-spark/guides/writing-meaningful-web-content-with-semantic-html.mdx @@ -22,9 +22,10 @@ When producing web content, **HTML elements** define the structure, purpose and Here are some benefits of using semantic...
3
diff --git a/includes/Modules/AdSense.php b/includes/Modules/AdSense.php @@ -533,7 +533,7 @@ tag_partner: "site_kit" return function() { $account_id = $this->get_data( 'account-id' ); if ( ! is_wp_error( $account_id ) && $account_id ) { - return sprintf( 'https://www.google.com/adsense/new/u/0/%s/main/viewreports', $ac...
2
diff --git a/manual.md b/manual.md @@ -567,20 +567,65 @@ The out of the box TypeScript compiler though relies on both extension-less modules and the Node.js module resolution logic to apply types to JavaScript modules. -In order to bridge this gap, Deno supports compiler hints that inform Deno the -location of `.d.ts` ...
7
diff --git a/src/lib/gundb/UserPropertiesClass.js b/src/lib/gundb/UserPropertiesClass.js @@ -52,7 +52,7 @@ export default class UserProperties { data: {} constructor(gun: Gun) { - this.gun = gun.user().get('properties') + this.gun = gun this.ready = (async () => { let props @@ -110,10 +110,10 @@ export default class Us...
1
diff --git a/resources/twitter-logo.svg b/resources/twitter-logo.svg -<svg width="34" height="28" viewBox="0 0 34 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> -<title>twitter-logo</title> +<svg width="34" height="34" viewBox="0 0 34 34" version="1.1" xmlns="http://www...
14
diff --git a/src/js/services/pushNotificationsService.js b/src/js/services/pushNotificationsService.js @@ -102,7 +102,7 @@ angular.module('copayApp.services').factory('pushNotificationsService', function if (usePushNotifications) { FirebasePlugin.onTokenRefresh(function(token) { - if (!_token) return; + if (!token) ret...
1
diff --git a/index.html b/index.html else { if (options.releases && options.releases.items) { var $releaseSwitcher = $('#releaseSwitcher'); + var foundRelease = null; for (let i = 0; i < options.releases.items.length; ++i) { let release = options.releases.items[i]; if (typeof release.latestVersion !== "undefined") { $l...
7
diff --git a/components/maplibre/ban-map/index.js b/components/maplibre/ban-map/index.js @@ -85,6 +85,23 @@ const isFeatureContained = (container, content) => { return booleanContains(polygonA, polygonB) } +const getPositionsFeatures = address => { + if (address?.positions?.length > 1) { + return address.positions.map(...
0
diff --git a/cloudtest/cloudtest_test.go b/cloudtest/cloudtest_test.go @@ -6,20 +6,19 @@ package cloudtest import ( "bytes" "fmt" + awsv2Config "github.com/aws/aws-sdk-go-v2/config" + "github.com/aws/aws-sdk-go-v2/service/sts" "regexp" "testing" "time" - - "github.com/aws/aws-sdk-go-v2/aws/session" - "github.com/aws/aw...
2
diff --git a/package.json b/package.json "node": "stable" }, "scripts": { + "preversion": "npm t", "test": "npm run lint && mocha test/ --recursive -R dot --check-leaks --require babel-core/register", "lint": "eslint _ng/**/*", "prepublish": "npm t",
0
diff --git a/test/multi/index.js b/test/multi/index.js @@ -47,7 +47,6 @@ describe('deploy multiple instances', () => { network, yes: true, privateKey: deployer.private, - deploymentPath: path.join(__dirname, '../../', 'publish', 'deployed', 'local'), }); });
2
diff --git a/packages/openneuro-server/handlers/users.js b/packages/openneuro-server/handlers/users.js @@ -118,7 +118,7 @@ export default { */ createAPIKey(req, res, next) { generateApiKey(req.user) - .then(key => res.send({ key: key })) + .then(key => res.send(key)) .catch(err => next(err)) },
1
diff --git a/src/parsers/seeker/GmlSeekerImpl.hx b/src/parsers/seeker/GmlSeekerImpl.hx @@ -38,8 +38,7 @@ class GmlSeekerImpl { public var project:Project; public var reader:GmlReaderExt; - - public var swapReader:GmlReaderExt = null; + public var swapReader:GmlReaderExt; public function saveReader():Void { if (swapRead...
9
diff --git a/package.json b/package.json "lint:fix": "eslint --fix app.js \"lib/**/*.js\" \"test/**/*.js\"", "lint": "eslint app.js \"lib/**/*.js\" \"test/**/*.js\"", "preinstall": "make pre-install", - "pretest": "NODE_ENV=test node test setup", + "pretest:setup": "npm run lint", + "test:setup": "NODE_ENV=test node te...
7
diff --git a/src/client/js/components/PageEditor/MarkdownTableUtil.js b/src/client/js/components/PageEditor/MarkdownTableUtil.js @@ -9,10 +9,9 @@ class MarkdownTableUtil { // https://github.com/markdown-it/markdown-it/blob/d29f421927e93e88daf75f22089a3e732e195bd2/lib/rules_block/table.js#L83 this.tableAlignmentLineRE =...
7
diff --git a/extensions/dbgobject/type/dbgobject-type.js b/extensions/dbgobject/type/dbgobject-type.js @@ -26,7 +26,8 @@ Loader.OnLoad(function () { // Normalize type name. this._name = name.trim(); // strip outer whitespace - this._name = this._name.replace(/^const\s+/, ""); // remove leading "const" and whitespace + ...
9
diff --git a/assets/js/modules/adsense/components/setup/SetupMain.js b/assets/js/modules/adsense/components/setup/SetupMain.js @@ -100,7 +100,7 @@ export default function SetupMain( { finishSetup } ) { const urlChannels = useSelect( ( select ) => select( STORE_NAME ).getURLChannels( accountID, clientID ) ); const accou...
14
diff --git a/packages/uppy/index.js b/packages/uppy/index.js @@ -17,7 +17,7 @@ exports.DragDrop = require('@uppy/drag-drop') exports.FileInput = require('@uppy/file-input') exports.Informer = require('@uppy/informer') exports.ProgressBar = require('@uppy/progress-bar') -exports.StatusBar = require('@uppy/statusbar') +e...
3
diff --git a/src/kiri/main.js b/src/kiri/main.js }); } - function platformUpdateSize() { + function platformUpdateSize(updateDark = true) { let dev = settings.device, isBelt = dev.bedBelt, width, depth, unitMM = ctrl.units === 'mm', gridMajor = unitMM ? 25 : 25.4, gridMinor = unitMM ? 5 : 25.4 / 10; + if (updateDark) {...
11
diff --git a/docs/jupyter.rst b/docs/jupyter.rst @@ -235,9 +235,9 @@ Then we can define the data and tell the server how to render it. hgc.View([ hgc.Track(track_type='top-axis', position='top'), hgc.Track(track_type='left-axis', position='left'), - hgc.Track(track_type='heatmap', position='center', - tileset_uuid=ts.u...
3
diff --git a/app/views/developer.scala.html b/app/views/developer.scala.html <h2>Contact Us</h2> <p class="text-justify"> Questions? Bugs? Feature requests and suggestions? Or anything else? Email us - (<a href="mailto:sidewalk@@umiacs.umd.edu">sidewalk@@umiacs.umd.edu</a>), post a + (<a href="mailto:sidewalk@@cs.uw.ed...
3
diff --git a/docs-website/_includes/scripts.html b/docs-website/_includes/scripts.html ga.q = [] ga.l = +new Date() ga('create', 'UA-52736259-4', 'auto') + ga('set', 'anonymizeIp', true) ga('send', 'pageview') </script> <script src="https://www.google-analytics.com/analytics.js" async defer></script>
12
diff --git a/package.json b/package.json "name": "find-and-replace", "main": "./lib/find", "description": "Find and replace within buffers and across the project.", - "version": "0.215.10", + "version": "0.215.11", "license": "MIT", "activationCommands": { "atom-workspace": [
6
diff --git a/packages/ts2kt-automator/lib.js b/packages/ts2kt-automator/lib.js @@ -43,7 +43,7 @@ function getPackageVersion(packageName) { } function getPackageTypeFilePath(name) { - const typePackage = require(`@types/${name}/package.json`); + const typePackage = require(path.resolve(process.cwd(), `./node_modules/@ty...
11
diff --git a/app/assets/javascripts/jquery/plugins/inat/universal_autocomplete.js.erb b/app/assets/javascripts/jquery/plugins/inat/universal_autocomplete.js.erb @@ -13,12 +13,6 @@ $.fn.universalAutocomplete = function( options ) { $( field ).data( "selected", false ); return; } - // var results = $( "li:visible", optio...
9
diff --git a/articles/user-profile/index.md b/articles/user-profile/index.md --- description: Explains the basics of a User profile, how to create a user and view users and their profile details. -url: /user-profile toc: true --- - # User Profile -The Auth0 **User Profile** is the set of attributes that contains specif...
2
diff --git a/README.md b/README.md @@ -38,7 +38,7 @@ npm run docs ## Questions -For questions and support please use the [Gitter chat room](https://gitter.im/vuejs/vue) or [the official forum](http://forum.vuejs.org). The issue list of this repo is **exclusively** for bug reports and feature requests. +For questions an...
14
diff --git a/test/unit/cli-facade-package.js b/test/unit/cli-facade-package.js @@ -101,15 +101,22 @@ describe('cli : facade : package', () => { execute(false, () => { local.compress.restore(); - const warnMessage = logSpy.warn.args[0][0], - okMessage = logSpy.ok.args[0][0], - re = new RegExp('\\' + path.sep, 'g'), - wa...
3
diff --git a/app.rb b/app.rb @@ -81,7 +81,7 @@ end # Returns all launches get '/launches' do content_type :json - results = DB.query("SELECT * FROM launch WHERE * IS NOT NULL", :cast_booleans => true) + results = DB.query("SELECT * FROM launch", :cast_booleans => true) hash = results.each do |row| end JSON.pretty_gener...
13
diff --git a/ImmediateGLBufferAttribute.js b/ImmediateGLBufferAttribute.js @@ -27,6 +27,10 @@ export class ImmediateGLBufferAttribute extends THREE.GLBufferAttribute { break; } case Uint8Array: { + glType = WebGLRenderingContext.UNSIGNED_BYTE; + break; + } + case Int8Array: { glType = WebGLRenderingContext.BYTE; break;...
0
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -707,9 +707,18 @@ metaversefile.setApi({ app.physicsObjects.push(physicsObject); return physicsObject; })(physics.addCookedConvexGeometry); + physics.enablePhysicsObject = (enablePhysicsObject => function(physicsObject) { + enablePhysicsObject.call(this, physi...
0
diff --git a/server/notifications/outgoing.js b/server/notifications/outgoing.js @@ -10,11 +10,39 @@ const postCatchError = Meteor.wrapAsync((url, options, resolve) => { const Lock = { _lock: {}, - has(id) { - return !!this._lock[id]; + _timer: {}, + echoDelay: 500, // echo should be happening much faster + normalDelay...
1
diff --git a/assets/js/modules/search-console/components/dashboard/DashboardImpressionsWidget.js b/assets/js/modules/search-console/components/dashboard/DashboardImpressionsWidget.js @@ -34,7 +34,6 @@ import { CORE_USER } from '../../../../googlesitekit/datastore/user/constants'; import { isZeroReport } from '../../uti...
2
diff --git a/src/integrations/analytics.test.js b/src/integrations/analytics.test.js +// @flow +import { NativeModules } from "react-native"; import analytics from "./analytics"; import { init } from "../actions"; +import { NAVIGATION } from "../actions/navigation"; +import { HOME } from "../constants/routes"; + +jest....
0
diff --git a/templates/workflow/program_update_form.html b/templates/workflow/program_update_form.html $('#id_sector').select2({theme: 'bootstrap'}) $('#id_user_access').select2({theme: 'bootstrap'}) $('#id_fund_code').select2({theme: 'bootstrap'}) + }); + $('#reset-id-reset').click(() => { + document.location.href = '...
0
diff --git a/packages/components/types/components/FormGroup.d.ts b/packages/components/types/components/FormGroup.d.ts import { PolymorphicComponent } from './_shared'; +import { GridProps } from './Grid'; import { TextProps } from './Text'; -export declare type FormGroupProps = { +export declare type FormGroupProps = ...
7
diff --git a/README.md b/README.md @@ -66,7 +66,33 @@ npm install --save-dev cypress cypress-vue-unit-test 1. Create a new project with `vue create <project-name>` and select Cypress for E2E testing 1. Install this package with `npm install --save-dev cypress-vue-unit-test` -1. Enable the import of Vue files by uncomme...
0
diff --git a/home.scn b/home.scn "scale": [1, 1, 1], "start_url": "https://avaer.github.io/hookshot/index.js" }, + { + "name": "lightsaber", + "position": [0, 1, 0], + "quaternion": [0, 0, 0, 1], + "scale": [1, 1, 1], + "start_url": "https://avaer.github.io/lightsaber/index.js" + }, { "name": "cv", "position": [-2, 0, ...
0
diff --git a/src/components/DateRangePicker.js b/src/components/DateRangePicker.js @@ -96,8 +96,8 @@ class DateRangePicker extends React.Component { super(props); this.state = { - focusedDay: props.selectedEndDate || moment().unix(), currentDate: props.selectedEndDate || moment().startOf('day').unix(), + focusedDay: pr...
12
diff --git a/src/index.js b/src/index.js @@ -63,8 +63,6 @@ const keys = { 'o': 79, } -const DefaultProvider = props => <React.Fragment children={props.children} /> - export class SlideDeck extends React.Component { static propTypes = { slides: PropTypes.array.isRequired,
4
diff --git a/app/update-password/template.hbs b/app/update-password/template.hbs <hr/> <h3 class="mt-20 text-left">{{t 'modalEditPassword.firstLogin.setView'}}{{field-required}}</h3> <div class="image-radio-container mt-20"> - <label class="image-radio" {{action "setView" "ember" }}> + <label class="image-radio" {{acti...
12
diff --git a/api/services/radarr.js b/api/services/radarr.js @@ -135,7 +135,7 @@ class Radarr { } async add(movieData) { - movieData.ProfileId = this.config.profileId; + movieData.qualityProfileId = parseInt(this.config.profileId); movieData.Path = `${this.config.rootPath}${sanitize( movieData.title )} (${movieData.yea...
1
diff --git a/src/lib/Notification/PushNotification/index.native.js b/src/lib/Notification/PushNotification/index.native.js @@ -33,9 +33,13 @@ function pushNotificationEventCallback(eventType, notification) { } // If a push notification is received while the app is in foreground, - // we'll assume pusher is connected so...
11
diff --git a/configs/atoti.json b/configs/atoti.json "selectors": { "lvl0": "section h1", "lvl1": "section h2", - "lvl2": "section h3, section dl.py.class dt, section dl.py.data dt, section dl.py.function dt", - "lvl3": "section h4, section dl.py.method dt", + "lvl2": "section h3, section dl.py.class > dt, section dl.p...
7
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,17 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master where X.Y.Z is the semver of most recent plotly.js release. +## [1.49.2] -- 2019-08-13 + +### Fixed +- Fix gl3d hover behavior when multiple points share identical position [#4096] +- Fix `mapbox-gl@1...
3
diff --git a/apps/gbridge/ChangeLog b/apps/gbridge/ChangeLog 0.23: Allow notification dismiss to remove from phone too 0.24: tag HRM power requests to allow this to work alongside other widgets/apps (fix #799) 0.25: workaround call notification + Fix inflated step number
3
diff --git a/packages/app/src/styles/theme/wood.scss b/packages/app/src/styles/theme/wood.scss @@ -66,7 +66,7 @@ html[dark] { // $color-list: $color-global; $bgcolor-list: transparent; $color-list-hover: $gray-100; - $bgcolor-list-hover: darken($bgcolor-global, 3%); + $bgcolor-list-hover: darken($bgcolor-global, 5%); /...
7
diff --git a/articles/libraries/lock/index.md b/articles/libraries/lock/index.md @@ -120,7 +120,7 @@ function showLoggedIn() { ## Browser Compatibility -Browser compatibility is ensured for **Chrome**, **Safari**, **Firefox** and **IE >= 9**. Auth0 currently uses [zuul](https://github.com/defunctzombie/zuul) along with...
3
diff --git a/src/Tracker.js b/src/Tracker.js @@ -70,7 +70,7 @@ class Tracker { .then((parsedBody) => { this.logger.debug(parsedBody); }) - .catch(this.logger.error); + .catch((error) => this.logger.error(`Error updating carbonitex. Token: ${carbonToken} | Error Code: ${error.statusCode} | Guilds: ${guildsLen}`)); }) .c...
1
diff --git a/test/functional/specs/C14409.js b/test/functional/specs/C14409.js import { t, ClientFunction } from "testcafe"; import createNetworkLogger from "../helpers/networkLogger"; -import getResponseBody from "../helpers/networkLogger/getResponseBody"; import fixtureFactory from "../helpers/fixtureFactory"; import...
2
diff --git a/spark/components/stepper/vanilla/stepper.tests.js b/spark/components/stepper/vanilla/stepper.tests.js @@ -532,7 +532,7 @@ describe('slider position tests', () => { </div> </li> `); - resetSlider([step], 'test', slider); + resetSlider([step], slider, 'test'); expect(step.querySelectorAll('.sprk-u-Visibility...
3
diff --git a/metaverse-modules.js b/metaverse-modules.js @@ -27,6 +27,8 @@ const loadPromise = (async () => { const p = metaversefile.import(moduleUrl) .then(m => { modules[moduleName] = m; + }, err => { + console.warn(err); }); promises.push(p); }
0
diff --git a/NiL.JS/BaseLibrary/JSON.cs b/NiL.JS/BaseLibrary/JSON.cs @@ -96,7 +96,12 @@ namespace NiL.JS.BaseLibrary if (!Tools.ParseNumber(code, ref pos, out value)) ExceptionHelper.ThrowSyntaxError("Invalid number definition."); + var intValue = (int)value; + frame.state = ParseState.End; + if (intValue == value) + f...
7
diff --git a/cmd_build.go b/cmd_build.go @@ -1046,6 +1046,17 @@ func Build(noop bool, } buildContext.cfTemplate.Description = serviceDescription + // Add some params to the context... + buildContext.workflowHooksContext = context.WithValue(buildContext.workflowHooksContext, + ContextKeyBuildOutputDir, + outputDirectory...
0
diff --git a/buildtools/check-example.js b/buildtools/check-example.js @@ -17,6 +17,10 @@ page.onError = function(msg, trace) { if (trace) { msgStack.push('TRACE:'); trace.forEach(function(t) { + if (t.file.startsWith('https://maps.googleapis.com/maps/api/js')) { + // Ignore google referer error + return; + } msgStack....
8
diff --git a/components/Audio/MediaProgress.js b/components/Audio/MediaProgress.js @@ -89,7 +89,9 @@ const MediaProgressProvider = ({ variables: { mediaId }, fetchPolicy: 'network-only' }) - .then(({ data: { mediaProgress: { secs } } = {} }) => { + .then(({ data: { mediaProgress } }) => { + // mediaProgress can be null...
9
diff --git a/package.json b/package.json "name": "find-and-replace", "main": "./lib/find", "description": "Find and replace within buffers and across the project.", - "version": "0.206.2", + "version": "0.206.3", "license": "MIT", "activationCommands": { "atom-workspace": [
6
diff --git a/packages/material-ui-shell/src/components/MenuHeader/MenuHeader.js b/packages/material-ui-shell/src/components/MenuHeader/MenuHeader.js @@ -70,7 +70,7 @@ const MenuHeader = () => { <List className={clsx(!isAuthenticated && classes.toolbar)}> {!isMiniMode && ( <ListItem className={classes.listItem}> - {isAu...
2
diff --git a/public/javascripts/SVLabel/src/SVLabel/keyboard/Keyboard.js b/public/javascripts/SVLabel/src/SVLabel/keyboard/Keyboard.js @@ -127,8 +127,14 @@ function Keyboard (svl, canvas, contextMenu, googleMap, ribbon, zoomControl) { * @private */ this._documentKeyDown = function (e) { + // Prevent Google's default pa...
1
diff --git a/token-metadata/0x64c5572E7a100AF9901c148D75d72c619A7f1e9d/metadata.json b/token-metadata/0x64c5572E7a100AF9901c148D75d72c619A7f1e9d/metadata.json "symbol": "UNICRAP", "address": "0x64c5572E7a100AF9901c148D75d72c619A7f1e9d", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFI...
3
diff --git a/server/services/getLinkedCatAuthors.php b/server/services/getLinkedCatAuthors.php @@ -143,11 +143,11 @@ function loadOrRefresh($lc_cache) { $authors = NULL; } finally { - # if no error occurred, update cache + # if error occurred, skip cache refreshment at this stage and load instead if (empty($authors)) {...
5
diff --git a/assets/js/modules/thank-with-google/components/setup/SetupPublicationActive.js b/assets/js/modules/thank-with-google/components/setup/SetupPublicationActive.js @@ -24,7 +24,7 @@ import PropTypes from 'prop-types'; /** * WordPress dependencies */ -import { Fragment, useCallback } from '@wordpress/element'; ...
2
diff --git a/src/pages/iou/IOUTransactions.js b/src/pages/iou/IOUTransactions.js @@ -42,7 +42,6 @@ const IOUTransactions = ({ <View style={[styles.mt3]}> {_.map(reportActions, (reportAction) => { if (reportAction.actionName === 'IOU' - && reportAction.originalMessage.IOUTransactionID && reportAction.originalMessage.IOU...
13
diff --git a/deepfence_backend/tasks/vulnerability_scan_worker.py b/deepfence_backend/tasks/vulnerability_scan_worker.py @@ -50,7 +50,7 @@ def vulnerability_scan(self, **kwargs): """ Figure out arguments for deepaudit """ - mapper_image_name = os.environ.get("mapper_image_name", "deepfenceio/deepfence_vulnerability_map...
13
diff --git a/articles/libraries/auth0-android/index.md b/articles/libraries/auth0-android/index.md @@ -35,7 +35,7 @@ Open your app's `AndroidManifest.xml` file and add the following permission. You can set up your Auth0 credentials and initiate Auth0 in one of two ways: -### 1) Client Information In-Line +### 1) Client...
0
diff --git a/src/graphql/mutations/__tests__/CreateReplyRequest.js b/src/graphql/mutations/__tests__/CreateReplyRequest.js @@ -33,12 +33,12 @@ describe('CreateReplyRequest', () => { expect(errors).toBeUndefined(); expect(data).toMatchSnapshot(); - const conn = await client.get({ + const request = await client.get({ ind...
10
diff --git a/package.json b/package.json }, "devDependencies": { "babel-cli": "^6.22.2", - "babel-eslint": "^2.0.2", "babel-plugin-transform-builtin-extend": "^1.1.2", "babel-plugin-transform-runtime": "^6.22.0", "babel-preset-latest": "^6.22.0", "coveralls": "^2.11.2", "dateformat": "^1.0.11", - "eslint": "^0.18.0", "...
2
diff --git a/articles/multifactor-authentication/custom-mfa-rules.md b/articles/multifactor-authentication/custom-mfa-rules.md --- -description: You can add step-up authentication to your app with Auth0's extensible multifactor authentication support. +title: Step-Up Authentication with Custom Multifactor Authenticatio...
3
diff --git a/src/libs/actions/Policy.js b/src/libs/actions/Policy.js @@ -907,8 +907,37 @@ function openWorkspaceReimburseView(policyID) { Log.warn('openWorkspaceReimburseView invalid params', {policyID}); return; } + const onyxData = { + optimisticData: [ + { + onyxMethod: CONST.ONYX.METHOD.MERGE, + key: ONYXKEYS.REIMB...
12
diff --git a/src/components/fab/QFab.vue b/src/components/fab/QFab.vue @@ -67,9 +67,9 @@ export default { close (fn) { this.opened = false this.__updateModel(false) + this.$emit('close') if (typeof fn === 'function') { - this.$emit('close') fn() } },
1
diff --git a/snomed-interaction-components/js/snomed-interaction-components-2.1.js b/snomed-interaction-components/js/snomed-interaction-components-2.1.js @@ -10641,8 +10641,8 @@ function conceptDetails(divElement, conceptId, options) { var subscription = channel.subscribe(panelId, function(data, envelope) { // console...
7
diff --git a/network.js b/network.js @@ -52,6 +52,7 @@ var assocBlockedPeers = {}; var exchangeRates = {}; var knownWitnesses = {}; var bWatchingForLight = false; +var prev_bugreport_hash = ''; if (process.browser){ // browser console.log("defining .on() on ws"); @@ -2122,7 +2123,12 @@ function handleJustsaying(ws, sub...
8
diff --git a/docs/README.md b/docs/README.md [[toc]] ## What is GrapesJS? -At first look you might probably think it's just another kind of page/HTML builder, but actually is something more. GrapesJS is a multi-purpose, Web Builder Framework, which means it allows you easily create your, drag & drop enabled, builder of...
7
diff --git a/src/state/state.js b/src/state/state.js @@ -282,15 +282,15 @@ var state = { * @memberOf me.state * @public * @function - * @param {boolean} [pauseTrack=false] pause current track on screen pause + * @param {boolean} [music=false] pause current music track on screen pause */ - pause(pauseTrack=false) { + pa...
1
diff --git a/assets/js/components/adminbar/LegacyAdminBarWidgets.js b/assets/js/components/adminbar/LegacyAdminBarWidgets.js @@ -48,15 +48,15 @@ export default function LegacyAdminBarWidgets() { return <AdminBarZeroData />; } - const handleSearchConsoleDataError = ( error, data ) => { - global.console.log( 'handleSearc...
2
diff --git a/tarteaucitron.services.js b/tarteaucitron.services.js @@ -4870,7 +4870,7 @@ tarteaucitron.services.webtvnu = { tarteaucitron.services.studizz = { "key": "studizz", "type": "other", - "name": "studizz", + "name": "Studizz Chatbot", "uri": "https://group.studizz.fr/", "needConsent": true, "cookies": [], @@ -...
10
diff --git a/.github/workflows/actions/android-pre-build/action.yml b/.github/workflows/actions/android-pre-build/action.yml @@ -7,13 +7,17 @@ inputs: runs: steps: - uses: actions/checkout@v2 + shell: bash - name: Git branch name + shell: bash id: git-branch-name uses: EthanSK/git-branch-name-action@v1 - name: Detect a...
0
diff --git a/src/updates.js b/src/updates.js @@ -234,7 +234,9 @@ export function applyClasses(element, classes) { function applyReferencedElementUpdates(element, updates) { for (const key in updates) { const props = updates[key]; - const referencedElement = element.$[key]; + const referencedElement = element.$ ? + elem...
11
diff --git a/src/migrations/20190618055300-abolish-crowi-classic-auth.js b/src/migrations/20190618055300-abolish-crowi-classic-auth.js @@ -15,7 +15,7 @@ module.exports = { // enable passport and delete configs for crowi classic auth await Promise.all([ - Config.deleteOne({ ns: 'crowi', key: 'security:isEnabledPassport'...
12