code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/lib/helpers/populate/assignVals.js b/lib/helpers/populate/assignVals.js @@ -130,7 +130,7 @@ module.exports = function assignVals(o) { docs[i].populated(_path, o.justOne ? originalIds[0] : originalIds, o.allOptions); // If virtual populate and doc is already init-ed, need to walk through // the actual doc t...
1
diff --git a/assets/js/modules/analytics/setup.js b/assets/js/modules/analytics/setup.js @@ -103,7 +103,6 @@ class AnalyticsSetup extends Component { errorReason: err.data && err.data.reason ? err.data.reason : false, } ); - data.deleteCache( 'analytics', 'existingTag' ); } } else { await this.getAccounts();
2
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -598,7 +598,7 @@ final class Analytics extends Module implements Module_With_Screen, Module_With_ 'dimensions' => array( $title_dimension, $path_dimension ), 'start_date' => $date_range[0], 'end_date' => $date_range[1], - 'page' => ! empty(...
2
diff --git a/src/pages/MetricDocs/Documentation/Documentation.js b/src/pages/MetricDocs/Documentation/Documentation.js @@ -45,7 +45,7 @@ const AreaTypes = { }; -const Markdown: ComponentType<*> = ({ payload }) => { +const Markdown: ComponentType<*> = ({ payload, className="" }) => { const data = useMarkdown(payload ? p...
10
diff --git a/src/ui/analytics.js b/src/ui/analytics.js @@ -8,6 +8,7 @@ import ElectronCookies from '@exponent/electron-cookies'; // @endif const isProduction = process.env.NODE_ENV === 'production'; +const devInternalApis = process.env.LBRY_API_URL; type Analytics = { pageView: string => void, @@ -48,7 +49,7 @@ const a...
11
diff --git a/components/layersviewer/layersviewer.js b/components/layersviewer/layersviewer.js @@ -533,8 +533,7 @@ LayersViewer.prototype.addItems = function(data, type) { if (loadingIcon) loadingIcon.parentNode.removeChild(loadingIcon); if (type=='human' || type=='ruler') { - this.searchBar.elt.style.display = null; -...
1
diff --git a/src/js/L.PM.Map.js b/src/js/L.PM.Map.js @@ -27,7 +27,7 @@ const Map = L.Class.extend({ }, removeLayer(e) { const layer = e.target; - if(!layer._layers && !layer.pm.dragging()) { + if(!layer._layers && (!layer.pm || !layer.pm.dragging())) { e.target.remove(); } },
1
diff --git a/app/models/user.rb b/app/models/user.rb @@ -764,9 +764,6 @@ class User < Sequel::Model end def get_database(options, configuration) - db_config = Rails.configuration.database_configuration[Rails.env] - configuration[:connect_timeout] = db_config['connect_timeout'] - ::Sequel.connect(configuration.merge(aft...
2
diff --git a/src/page/home/sidebar/SidebarLinks.js b/src/page/home/sidebar/SidebarLinks.js @@ -2,7 +2,7 @@ import React from 'react'; import {View} from 'react-native'; import _ from 'underscore'; import PropTypes from 'prop-types'; -import lodashOrderBy from 'lodash.orderBy'; +import { lodashOrderBy } from 'lodash.ord...
4
diff --git a/src/components/selections/select.js b/src/components/selections/select.js @@ -350,7 +350,7 @@ function prepSelect(evt, startX, startY, dragOptions, mode) { fillRangeItems(eventData, poly); - gd.emit('plotly_selecting', eventData); + emitSelecting(gd, eventData); } ); } @@ -381,7 +381,7 @@ function prepSele...
0
diff --git a/src/app.hooks.js b/src/app.hooks.js const auth = require('@feathersjs/authentication'); const { discard } = require('feathers-hooks-common'); const { NotAuthenticated } = require('@feathersjs/errors'); +const { DonationStatus } = require('./models/donations.model'); const { isRequestInternal } = require('....
11
diff --git a/htdocs/js/notebook/notebook_model.js b/htdocs/js/notebook/notebook_model.js @@ -44,7 +44,7 @@ Notebook.create_model = function() if(user_appended){ asset_filenames.push(asset_model.change_object().filename); - asset_filenames.sort(); + asset_filenames.sort((a,b) => a.localeCompare(b, undefined, {sensitivit...
8
diff --git a/app/src/components/VideoContainers/VideoView.js b/app/src/components/VideoContainers/VideoView.js @@ -143,7 +143,8 @@ const styles = (theme) => color : 'rgba(255, 255, 255, 0.85)', border : 'none', borderBottom : '1px solid #aeff00', - backgroundColor : 'transparent' + backgroundColor : 'rgba(0, 0, 0, 0.25...
7
diff --git a/public/app/js/cbus-ui.js b/public/app/js/cbus-ui.js @@ -74,7 +74,7 @@ cbus.ui.display = function(thing, data) { document.getElementsByClassName("player_detail_feed-title")[0].textContent = feed.title; document.getElementsByClassName("player_detail_date")[0].textContent = moment(data.date).calendar(); - var...
1
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -21,6 +21,9 @@ jobs: - name: Install dependencies run: npm ci + - name: Lint code + run: npm run lint + - name: Setup browser testing uses: browserstack/github-actions/setup-env@master with:
0
diff --git a/VisionOnEdge/EdgeSolution/modules/WebModule/ui/src/components/CameraConfigure/CameraConfigureInfo.tsx b/VisionOnEdge/EdgeSolution/modules/WebModule/ui/src/components/CameraConfigure/CameraConfigureInfo.tsx @@ -121,7 +121,7 @@ export const CameraConfigureInfo: React.FC<{ camera: Camera; projectId: number } ...
10
diff --git a/lib/utils/accountParser.js b/lib/utils/accountParser.js @@ -31,6 +31,12 @@ class AccountParser { hexBalance = getHexBalanceFromString(accountConfig.balance, web3); //hexBalance = getHexBalanceFromString(accountConfig.balance, web3); } + + if (accountConfig.privateKey === 'random') { + let randomAccount = w...
11
diff --git a/guides/cloudshell.md b/guides/cloudshell.md @@ -13,20 +13,29 @@ image: thumb: --- -One of the attractions of using the Azure Cloud Shell is that there is little configuration required. The containers for both Bash and PowerShell are evergreen, and you can access it from the portal, via <https://shell.azure...
7
diff --git a/js/lbank2.js b/js/lbank2.js @@ -444,13 +444,14 @@ module.exports = class lbank2 extends Exchange { */ await this.loadMarkets (); const market = this.market (symbol); + if (limit === undefined) { + throw new ArgumentsRequired (this.id + ' fetchOrderBook () requires a limit argument'); + } const request = { ...
4
diff --git a/OpenRobertaServer/staticResources/js/app/roberta/controller/robot.controller.js b/OpenRobertaServer/staticResources/js/app/roberta/controller/robot.controller.js @@ -83,7 +83,7 @@ define([ 'exports', 'util', 'log', 'message', 'guiState.controller', 'guiState.m $('#single-modal label').text(Blockly.Msg["POP...
1
diff --git a/tests/phpunit/integration/Core/Modules/ModulesTest.php b/tests/phpunit/integration/Core/Modules/ModulesTest.php @@ -47,7 +47,7 @@ class ModulesTest extends TestCase { $modules->get_available_modules() ); - $this->assertEqualSets( + $this->assertSameSetsWithIndex( array( 'adsense' => 'Google\\Site_Kit\\Modu...
14
diff --git a/bundles/core-player-events/player-events.js b/bundles/core-player-events/player-events.js @@ -11,7 +11,7 @@ module.exports = (srcPath) => { commandQueued: state => function (commandIndex) { const command = this.commandQueue.queue[commandIndex]; const ttr = sprintf('%.1f', this.commandQueue.getTimeTilRun(co...
1
diff --git a/src/apps.json b/src/apps.json }, "Mobify": { "cats": [ + 6, 26 ], + "headers": { + "X-Powered-By": "Mobify" + }, "icon": "Mobify.png", "js": { "Mobify": "" }, - "script": "//cdn\\.mobify\\.com/", + "script": [ + "//cdn\\.mobify\\.com/", + "//a\\.mobify\\.com/" + ], "website": "https://www.mobify.com" }, "M...
7
diff --git a/src/algorithms/utils/exportResult.ts b/src/algorithms/utils/exportResult.ts @@ -41,7 +41,7 @@ export async function exportAll(params: AllParams, result: AlgorithmResult) { console.error('Error: the results of the simulation cannot be exported because they are nondeterministic') } else { const path = 'covid...
4
diff --git a/articles/libraries/auth0js/v8/index.md b/articles/libraries/auth0js/v8/index.md @@ -213,11 +213,10 @@ var url = webAuth.client.buildAuthorizeUrl({ The `state` parameter, is not required, but it is recommended. It is an opaque value that Auth0 will send back to you. This method helps prevent CSRF attacks. :...
3
diff --git a/docs/index.md b/docs/index.md # Lightning Core Reference -The Reference Documentation for Lightning Core contains detailed descriptions about various concepts of Lightning Core, which are: +The Reference Documentation for Lightning Core contains detailed descriptions about various concepts of Lightning Cor...
0
diff --git a/src/js/createTippy.js b/src/js/createTippy.js @@ -342,9 +342,7 @@ export default function createTippy(reference, collectionProps) { if (!instance.state.isVisible) { lastTriggerEvent = event - // Use the `mouseenter` event as a "mock" mousemove event for touch - // devices - if (isUsingTouch && includes(eve...
7
diff --git a/src/js/core/Utils.js b/src/js/core/Utils.js @@ -1005,7 +1005,6 @@ var Utils = { return html; }; - var Utils = this; var html = "<div style='padding: 5px;'>" + files.length + " file(s) found</div>\n";
2
diff --git a/assets/js/googlesitekit-idea-hub-post-list-notice.js b/assets/js/googlesitekit-idea-hub-post-list-notice.js @@ -36,7 +36,7 @@ domReady( () => { return; } const type = notice.id.replace( 'googlesitekit-notice-', '' ); - const expiresInSeconds = type === 'new-ideas' ? WEEK_IN_SECONDS : 0; + const expiresInSe...
4
diff --git a/magda-web-server/src/index.ts b/magda-web-server/src/index.ts @@ -213,7 +213,7 @@ const topLevelRoutes = [ "sign-in-redirect", "dataset", "projects", - "publishers" + "organisations" ]; topLevelRoutes.forEach(topLevelRoute => { @@ -225,6 +225,14 @@ topLevelRoutes.forEach(topLevelRoute => { }); }); +/** + *...
14
diff --git a/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/InstrumentsReflected.java b/detox/android/detox/src/main/java/com/wix/detox/instruments/reflected/InstrumentsReflected.java package com.wix.detox.instruments.reflected; import android.content.Context; -import android.util.Log; import com...
2
diff --git a/package-lock.json b/package-lock.json } }, "vue-loader-v16": { - "version": "npm:vue-loader@16.0.0-rc.2", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-16.0.0-rc.2.tgz", - "integrity": "sha512-cz8GK4dgIf1UTC+do80pGvh8BHcCRHLIQVHV9ONVQ8wtoqS9t/+H02rKcQP+TVNg7khgLyQV2+8eHUq7/AFq3g==", + "...
3
diff --git a/config.js b/config.js @@ -9,6 +9,6 @@ module.exports = { enable_cache: process.env.ENABLE_CACHE || false, redis_url: process.env.REDIS_URL || '', hasura_admin_key: process.env.HASURA_ADMIN_KEY || '', - hasura_url: process.env.HASURA_URL, + hasura_url: process.env.HASURA_URL || 'https://localhost:8080/v1/gr...
12
diff --git a/website/themes/uppy/layout/layout.ejs b/website/themes/uppy/layout/layout.ejs @@ -41,7 +41,7 @@ if (page.series) { <div class="page"> <div class="TransloaditBar js-TransloaditBar"> <div class="TransloaditBar-about"> - <a class="TransloaditBar-logo" href="https://transloadit.com/" target="_blank" rel="noope...
0
diff --git a/src/components/input/Select.js b/src/components/input/Select.js -import React, {useState} from 'react'; +import React, {useEffect, useState} from 'react'; import PropTypes from 'prop-types'; import {omit} from 'ramda'; import {CustomInput} from 'reactstrap'; const Select = props => { - const [value, setVal...
11
diff --git a/docs/api/utils.md b/docs/api/utils.md @@ -196,7 +196,7 @@ request. All `options` not recognized by this function are passed to it, so see <tr> <td colspan="3"><p>Function accepts <code>response</code> object as a single parameter and should return true or false. If function returns true request gets aborte...
1
diff --git a/docs/installation.md b/docs/installation.md @@ -10,7 +10,7 @@ Laravel 5.4 ships with everything you need to get started. Simply: * Run `npm install` * Visit your `webpack.mix.js file`, and get started! -Now, from the command line, you may run `npm run dev` to watch your files for changes, and then recompil...
1
diff --git a/magda-scala-common/src/main/scala/au/csiro/data61/magda/model/Registry.scala b/magda-scala-common/src/main/scala/au/csiro/data61/magda/model/Registry.scala @@ -206,8 +206,8 @@ object Registry { if (totalWeighting > 0) { ratings.map(rating => (rating.score) * (rating.weighting / totalWeighting)).reduce(_ + ...
12
diff --git a/src/sections/Meshery/Meshery-integrations/Individual-Integrations/index.js b/src/sections/Meshery/Meshery-integrations/Individual-Integrations/index.js @@ -35,7 +35,7 @@ const IndividualIntegrations = ({ data }) => { <h2>Overview</h2> <MDXRenderer>{body}</MDXRenderer> <section className="external-btns"> - ...
14
diff --git a/lib/assets/test/spec/builder/components/code-mirror/code-mirror-view.spec.js b/lib/assets/test/spec/builder/components/code-mirror/code-mirror-view.spec.js @@ -24,7 +24,7 @@ function fakeCodeMirrorKey (cm, type, code, props) { } } -fdescribe('components/code-mirror/code-mirror-view', function () { +describ...
2
diff --git a/vendor/ember-cli-addon-docs/404.html b/vendor/ember-cli-addon-docs/404.html var l = window.location; var segments = l.pathname.split('/'); - // Special case the `latest` version so we don't wind up in a redirect loop - if (segments[segmentCount] !== 'latest') { + // Avoid an infinite loop if we try to dire...
7
diff --git a/src/core/operations/AdvancedEntropy.mjs b/src/core/operations/AdvancedEntropy.mjs @@ -34,7 +34,7 @@ class AdvancedEntropy extends Operation { { "name": "Visualization", "type": "option", - "value": ["Histogram (Bar)", "Histogram (Line)"] + "value": ["Histogram (Bar)", "Histogram (Line)", "Curve"] } ]; } @@...
0
diff --git a/tests/e2e/config/wordpress-debug-log/log-ignore-list.js b/tests/e2e/config/wordpress-debug-log/log-ignore-list.js @@ -16,6 +16,7 @@ export const logIgnoreList = { 'PHP Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /var/www/html/wp-includes/class-wp-editor.php ...
8
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/field/material-select/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/field/material-select/template.vue computed: { modelFromValue: { get () { - if(this.value){ - this.schema.values.forEach(item => { - if (item.value === this.value) { - re...
11
diff --git a/experimental/adaptive-dialog/docs/anatomy-and-runtime-behavior.md b/experimental/adaptive-dialog/docs/anatomy-and-runtime-behavior.md @@ -60,7 +60,7 @@ Here's the flow when user says `I'd like to book a flight` <p align="center"> <img alt="Adaptive_dialog_scenario_setup" src="./Assets/adaptive-dialog-first...
1
diff --git a/src/components/Translation.tsx b/src/components/Translation.tsx import React from "react" -import { FormattedMessage } from "react-intl" +import { FormattedHTMLMessage } from "react-intl" import { getDefaultMessage, TranslationKey } from "../utils/translations" -// Wrapper on <FormattedMessage /> to always...
13
diff --git a/src/component/component/props.js b/src/component/component/props.js @@ -10,6 +10,15 @@ import { uniqueID } from '../../lib'; export const internalProps = { + env: { + type: 'string', + required: false, + queryParam: true, + def() { + return this.defaultEnv; + } + }, + uid: { type: 'string', def() { @@ -29,...
12
diff --git a/src/kiri-mode/fdm/slice.js b/src/kiri-mode/fdm/slice.js let heights = []; // handle z cutting (floor method) and base flattening - let zPress = process.firstLayerFlatten || 0; + let zPress = isBelt ? process.firstLayerFlatten || 0 : 0; let zCut = widget.track.zcut || 0; if (zCut || zPress) { for (let p of ...
11
diff --git a/src/input/keyboard.js b/src/input/keyboard.js } } // prevent event propagation - if (preventDefaultForKeys[keyCode]) { + if (preventDefaultForKeys[keyCode] && (typeof e.preventDefault === "function")) { + // "fake" events generated through triggerKeyEvent do not have a preventDefault fn return e.preventDef...
1
diff --git a/gulpfile.babel.js b/gulpfile.babel.js @@ -36,6 +36,7 @@ gulp.task('js:app', () => { .pipe(gulp.dest(distPath + '/js')); }); +/*jshint camelcase: false */ var excludeDefaultStyles = process.env.npm_config_excludeDefaultStyles || false; gulp.task('js:vendor', ['bower'], () => {
8
diff --git a/Source/Core/RectangleGeometry.js b/Source/Core/RectangleGeometry.js @@ -4,6 +4,7 @@ define([ './Cartesian2', './Cartesian3', './Cartographic', + './Check', './ComponentDatatype', './defaultValue', './defined', @@ -30,6 +31,7 @@ define([ Cartesian2, Cartesian3, Cartographic, + Check, ComponentDatatype, defa...
14
diff --git a/src/Services/Terminal/Terminal.js b/src/Services/Terminal/Terminal.js @@ -149,6 +149,7 @@ module.exports = function (settings) { break; } }); + /* istanbul ignore next */ process.on('exit', () => { switch (state.terminalState) { case TERMINAL_STATE_BUSY:
0
diff --git a/CHANGELOG.md b/CHANGELOG.md # Changelog -## Unreleased +<!-- ## Unreleased --> + +## [24.0.0] - 2018-08-30 ### Fixed * `plugin:shopify/flow` now disables rules checked by Flow's static analyzer. ([#135](https://github.com/Shopify/eslint-plugin-shopify/pull/135)) * [`typescript/no-var-requires`](https://git...
3
diff --git a/index.html b/index.html <script src="js/plugins/tern.js"></script> <!-- smart autocomplete --> <script src="js/plugins/debugger.js"></script> <script src="js/plugins/tour.js"></script> + <script src="js/plugins/settingsProfile.js"></script> <script src="js/plugins/helpLinks.js"></script> <script src="js/pl...
11
diff --git a/package.json b/package.json "description": "The motion graphics toolbelt for the web", "source": "src/mojs.babel.js", "main": "dist/mo.umd.js", + "module": "src/mojs.babel.js", "browser": "dist/mo.umd.js", "unpkg": "dist/mo.umd.js", "scripts": {
0
diff --git a/tests/e2e/specs/auth-setup-search-console.test.js b/tests/e2e/specs/auth-setup-search-console.test.js @@ -6,18 +6,14 @@ import { activatePlugin, createURL, visitAdminPage } from '@wordpress/e2e-test-u /** * Internal dependencies */ -import { resetSiteKit, deactivateAllOtherPlugins, pasteText, wpApiFetch, u...
3
diff --git a/src/apps.json b/src/apps.json "<meta content=\"GitLab\" property=\"og:site_name\">", "<meta content=\"https?://[^/]+/assets/gitlab_logo-" ], - "env": "GitLab", + "env": "^GitLab$", "icon": "GitLab.svg", "implies": [ "Ruby",
7
diff --git a/src/libs/reportUtils.js b/src/libs/reportUtils.js @@ -189,12 +189,12 @@ function getChatRoomSubtitle(report, policiesMap) { // The domainAll rooms are just #domainName, so we ignore the prefix '#' to get the domainName return report.reportName.substring(1); } - if (isArchivedRoom(report)) { - return report...
4
diff --git a/src/pages/settings/Profile/ProfilePage.js b/src/pages/settings/Profile/ProfilePage.js @@ -71,11 +71,11 @@ class ProfilePage extends Component { super(props); this.state = { firstName: props.myPersonalDetails.firstName, - firstNameError: false, + hasFirstNameError: false, lastName: props.myPersonalDetails.l...
10
diff --git a/data.js b/data.js @@ -73,6 +73,14 @@ module.exports = [ url: "https://github.com/unicorn-standard/uniloc", source: "https://raw.githubusercontent.com/unicorn-standard/uniloc/master/uniloc.js" }, + { + name: "body-scroll-freezer.js", + github: "ramonvictor/body-scroll-freezer", + tags: ["scroll", "freeze", ...
0
diff --git a/Apps/Sandcastle/index.html b/Apps/Sandcastle/index.html content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" /> <title>Cesium Sandcastle</title> + <link + rel="icon" + type="image/svg+xml" + href="https://cesium.com/cesium-logomark.svg" + /> + <link + rel="icon"...
4
diff --git a/src/client/public/gallery.ts b/src/client/public/gallery.ts @@ -169,10 +169,14 @@ export class Gallery { }?gallery=true`; if (isCustomFunctionScript(snippet.script.content)) { + // Navigate to the dashboard page. Since it's on the same domain, + // navigation should be quick, so don't worry about changing ...
7
diff --git a/src/plots/domain.js b/src/plots/domain.js @@ -131,6 +131,6 @@ exports.defaults = function(containerOut, layout, coerce, dfltDomains) { var y = coerce('domain.y', dfltY); // don't accept bad input data - if(!(x[0] < x[1])) containerOut.domain.x = dfltX; - if(!(y[0] < y[1])) containerOut.domain.y = dfltY; + ...
0
diff --git a/src/docs/plugins/edge.md b/src/docs/plugins/edge.md @@ -243,10 +243,10 @@ The content inside of the `edge` shortcode is generated on the Edge. {% raw %} ```js -module.exports = function(data) { +module.exports = async function(data) { return `The content outside of the \`edge\` shortcode is generated with ...
1
diff --git a/packages/e2e-tests/pagerduty-reporter.js b/packages/e2e-tests/pagerduty-reporter.js @@ -17,7 +17,7 @@ class PagerDutyReporter { assignments: [ { assignee: { - id: "PM9MK7I", // vlad@near.org + id: "PB796BV", // osman@near.org type: "user_reference", }, }, @@ -28,7 +28,7 @@ class PagerDutyReporter { Wallet ...
3
diff --git a/userscript.user.js b/userscript.user.js @@ -41446,7 +41446,8 @@ var $$IMU_EXPORT$$; method: "GET", headers: { Referer: referer, - "Sec-Fetch-Site": "same-origin" + "Sec-Fetch-Site": "same-origin", + "Accept": "application/json, text/plain, */*" }, onload: function(result) { if (result.readyState !== 4) @@ ...
1
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/palette-editor.js b/packages/node_modules/@node-red/editor-client/src/js/ui/palette-editor.js @@ -220,7 +220,11 @@ RED.palette.editor = (function() { var setElements = nodeEntry.sets[setName]; if (set.err) { errorCount++; - $("<li>").text(set.err).app...
9
diff --git a/token-metadata/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/metadata.json b/token-metadata/0x150b0b96933B75Ce27af8b92441F8fB683bF9739/metadata.json "symbol": "GOLD", "address": "0x150b0b96933B75Ce27af8b92441F8fB683bF9739", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/assets/js/googlesitekit/widgets/components/WidgetRenderer.js b/assets/js/googlesitekit/widgets/components/WidgetRenderer.js @@ -78,7 +78,6 @@ const WidgetRenderer = ( { slug, OverrideComponent } ) => { WidgetRenderer.propTypes = { slug: PropTypes.string.isRequired, - columnWidth: PropTypes.number, Override...
2
diff --git a/articles/email/custom.md b/articles/email/custom.md --- description: The Auth0 APIs provide endpoints that allow you to completely manage email flow, and control when and how emails are sent. +toc: true --- - # Custom Email Handling The default email flow in Auth0 can address the requirements of most appli...
0
diff --git a/src/styles/styles.js b/src/styles/styles.js @@ -790,6 +790,7 @@ const styles = { borderWidth: 0, borderRadius: 0, height: 'auto', + lineHeight: '25px', // On Android, multiline TextInput with height: 'auto' will show extra padding unless they are configured with // paddingVertical: 0, alignSelf: 'center', ...
12
diff --git a/src/modules/DataLabels.js b/src/modules/DataLabels.js @@ -220,6 +220,14 @@ class DataLabels { ) { dataLabelColor = w.globals.dataLabels.style.colors[j] } + if (typeof dataLabelColor === 'function') { + dataLabelColor = dataLabelColor({ + series: w.globals.series, + seriesIndex: i, + dataPointIndex: j, + w ...
11
diff --git a/src/widgets/tooltip/ProfileTooltip.js b/src/widgets/tooltip/ProfileTooltip.js @@ -78,7 +78,7 @@ export default class ProfileTooltip extends Component { if (this.state.fetching || _.isEmpty(userData)) { return ( - <div className={className}> + <div className={className} style={style}> <Loading /> </div> );
1
diff --git a/src/io_frida.c b/src/io_frida.c @@ -1132,8 +1132,16 @@ static bool resolve4(RList *args, R2FridaLaunchOptions *lo, GCancellable *cancel GError *error = NULL; const char *devid = R_STR_ISNOTEMPTY (arg2)? arg2: NULL; - if (link == R2F_LINK_REMOTE) { + switch (link) { + case R2F_LINK_USB: + devid = R_STR_ISNO...
7
diff --git a/README.md b/README.md @@ -178,13 +178,13 @@ Listen for resize events from the parent page, or the iFrame. Select the 'child' ### scrolling default: false - type: mixed | 'auto' + type: true | false | 'omit' | 'auto' Enable scroll bars in iFrame. -* `true` applies `scrolling="yes"` -* `false` applies `scrol...
7
diff --git a/CHANGELOG.md b/CHANGELOG.md # Changelog -## Unreleased - - MySQL: Fix for MySQL instrumentation sometimes losing the tracing context +## 1.47.1 + - MySQL: Fix for MySQL instrumentation sometimes losing the tracing context. ## 1.47.0 - Add MSSQL (Microsoft SQL Server) instrumentation (supports [mssql](https...
6
diff --git a/test/jasmine/tests/gl3d_plot_interact_test.js b/test/jasmine/tests/gl3d_plot_interact_test.js @@ -1175,6 +1175,65 @@ describe('Test gl3d drag and wheel interactions', function() { .then(done); }); + it('@gl should update the scene aspectratio when zooming with scroll wheel i.e. orthographic case', function...
0
diff --git a/README.md b/README.md @@ -438,12 +438,11 @@ Embark includes a testing lib to fastly run & test your contracts in a EVM. # test/simple_storage_spec.js var assert = require('assert'); -var Embark = require('embark'); -var EmbarkSpec = Embark.initTests(); -var web3 = EmbarkSpec.web3; +var EmbarkSpec = require...
3
diff --git a/docs/_posts/2017-07-08-switch.html b/docs/_posts/2017-07-08-switch.html @@ -42,7 +42,7 @@ keywords: "switch,checkbox" </div> </div> <pre class="sd-snippet-code"> -&lt;label class="siimple-label">Your switch:</label> +&lt;label class="siimple-label"&gt;Your switch:&lt;/label&gt; &lt;div class="siimple-switc...
1
diff --git a/hyperion/cache.js b/hyperion/cache.js @@ -30,8 +30,10 @@ const cache = ( return next(); } - const key = `__cache__${req.originalUrl || req.url}`; - debug(`unauthenticated request, checking cache for ${key}`); + // NOTE(@mxstbr): Using req.path here (instead of req.url or req.originalUrl) to avoid sending u...
8
diff --git a/assets/js/components/data/index.test.js b/assets/js/components/data/index.test.js @@ -25,7 +25,7 @@ import * as DateRange from '../../util/date-range.js'; import { getCacheKey } from './cache'; import { enableTracking } from '../../util/tracking'; -describe( 'googlesitekit.dataAPI', () => { +describe( 'dat...
2
diff --git a/src/v2/guide/unit-testing.md b/src/v2/guide/unit-testing.md @@ -131,4 +131,4 @@ it('updates the rendered message when vm.message updates', done => { We are planning to work on a collection of common test helpers to make it easier to render components with different constraints (e.g. shallow rendering that ...
14
diff --git a/appdata/menu.html b/appdata/menu.html </span> <span class="caltext">Linear Algebra</span> - <span class="totalcal">21 Calculators</span> + <span class="totalcal">13 Calculators</span> </div> </div> </span> <span class="caltext">Conic</span> - <span class="totalcal">21 Calculators</span> + <span class="tota...
3
diff --git a/articles/email/spa-redirect.md b/articles/email/spa-redirect.md @@ -27,17 +27,17 @@ However, SPA frameworks (such as Angular) typically expect URLs in the `scheme|a For example, with the above URL, the app will be routed to `/` instead of `/#/register`. -## Using state +## Using a Query String Parameter -T...
10
diff --git a/src/components/EmojiPicker/EmojiPickerButton.js b/src/components/EmojiPicker/EmojiPickerButton.js import React from 'react'; import {Keyboard, Pressable} from 'react-native'; import PropTypes from 'prop-types'; -import {compose} from 'underscore'; +import compose from '../../libs/compose'; import styles fr...
4
diff --git a/guides/airflow-scaling-workers.md b/guides/airflow-scaling-workers.md @@ -37,8 +37,8 @@ Here are the settings and their default values. <td align="center">16</td> </tr> <tr> - <td>max_threads</td> - <td>AIRFLOW__SCHEDULER__MAX_THREADS</td> + <td>parsing_processes</td> + <td>AIRFLOW__SCHEDULER__PARSING_PROC...
14
diff --git a/js/core/bis_bidsutils.js b/js/core/bis_bidsutils.js @@ -171,6 +171,10 @@ let dicom2BIDS = async function (opts) { console.log('parsed filenames', parsedFilenames); + + //TODO: This seems to cause errors on Windows? Something about how it reads the raw data gives a strange error with toString() + //My insti...
1
diff --git a/docs/src/examples/QSelect/OptionSlot.vue b/docs/src/examples/QSelect/OptionSlot.vue options-selected-class="text-deep-orange" > <template v-slot:option="scope"> - <q-item - v-bind="scope.itemProps" - v-on="scope.itemEvents" - > + <q-item v-bind="scope.itemProps"> <q-item-section avatar> <q-icon :name="scop...
1
diff --git a/src/pipeline/bundle-js.js b/src/pipeline/bundle-js.js @@ -9,12 +9,12 @@ const Promise = require('bluebird'); let b; -const getTransform = (opts) => { +const getTransform = (opts, paths) => { const _getTransform = (name) => { return (opts[name] || []).map(d => require(d)); }; - return [[ babelify, { presets...
1
diff --git a/runtime.js b/runtime.js @@ -144,6 +144,46 @@ const _loadGltf = async (file, {optimize = false, physics = false, physics_url = }; _loadLightmaps(parser); + const textureToData = new Map(); + const registeredTextures = []; + const _loadUvScroll = o => { + o.traverse(o => { + if (o.isMesh && o?.userData?.gltf...
0
diff --git a/server/src/input/pdfminer/pdfminer.ts b/server/src/input/pdfminer/pdfminer.ts @@ -24,9 +24,7 @@ import { Document, Element, Font, - Line, Page, - Paragraph, Word, } from '../../types/DocumentRepresentation'; import { PdfminerPage } from '../../types/PdfminerPage'; @@ -121,13 +119,11 @@ function getPage(pag...
2
diff --git a/lib/test_task.js b/lib/test_task.js @@ -101,7 +101,7 @@ var TestTask = function () { } task(this.testName, prereqs, {async: true}, function () { - var t = jake.Task[self.testName + ':run']; + var t = jake.Task[this.fullName + ':run']; t.on('complete', function () { complete(); });
1
diff --git a/assets/js/modules/analytics/datastore/setup-flow.test.js b/assets/js/modules/analytics/datastore/setup-flow.test.js @@ -34,12 +34,7 @@ import { unsubscribeFromAll, provideModules, untilResolved, - freezeFetch, } from '../../../../../tests/js/utils'; -import { CORE_MODULES } from '../../../googlesitekit/mod...
2
diff --git a/src/schemas/json/comet.json b/src/schemas/json/comet.json "oneOf": [ { "const": "NONE", - "description": "" + "description": "Don't sink. This is the default" }, { "const": "JBDC", - "description": "" + "description": "dataset will be sinked to a JDBC Database. See JdbcSink" }, { "const": "BQ", - "descript...
7
diff --git a/pages/docs/react/latest/arrays-and-keys.mdx b/pages/docs/react/latest/arrays-and-keys.mdx @@ -101,21 +101,24 @@ In case you ever want to render a `list` of items, you can do something like thi ```res type todo = {id: string, text: string} + +@react.component +let make = () => { let todoList = list{ {id: "t...
1
diff --git a/website/source/index.html.erb b/website/source/index.html.erb @@ -63,7 +63,7 @@ title: Sir Trevor JS | Made by Many <h2>Features</h2> <ul class="features cf"> - <li class="feature" data-icon="add">No HTML is stored, only structured JSON and clean Markdown</li> + <li class="feature" data-icon="add">Stored i...
3
diff --git a/tests/smoke/smoke.js b/tests/smoke/smoke.js @@ -22,14 +22,14 @@ chai.use(chaiHttp); var expect = chai.expect; -tests.forEach((testItem) => { - it(`${testItem.engine} should answer with HTTP 200`, function(done) { +tests.forEach((testCase) => { + it(`${testCase.engine} should answer with HTTP 200`, function...
10
diff --git a/articles/implementing-shooting-method-in-matlab/index.md b/articles/implementing-shooting-method-in-matlab/index.md @@ -13,13 +13,11 @@ images: - url: /engineering-education/implementing-shooting-method-in-matlab/hero.png alt: shooting method Matlab +--- In numerical analysis, the shooting method reduces a...
1
diff --git a/src/resources/views/crud/fields/switch.blade.php b/src/resources/views/crud/fields/switch.blade.php <div class="d-inline-flex"> {{-- Switch --}} - <label class="switch switch-sm switch-label switch-pill switch-{{ $field['color'] }}" style="margin-bottom: 0;"> + <label class="switch switch-sm switch-label s...
11
diff --git a/weapons-manager.js b/weapons-manager.js @@ -1109,6 +1109,22 @@ const itemSpecs3 = [ "name": "camera", "start_url": "https://avaer.github.io/camera/index.js" }, + { + "name": "cat-in-hat", + "start_url": "https://avaer.github.io/cat-in-hat/manifest.json" + }, + { + "name": "sword", + "start_url": "https://a...
0