code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/scss/_provider.scss b/src/scss/_provider.scss margin: 0 8px 0 0; } + .uppy-ProviderBrowser-user:after { + content: '\00B7'; + position: relative; + left: 4px; + } + .uppy-ProviderBrowser-header { z-index: $zIndex-2; border-bottom: 1px solid lighten($color-asphalt-gray, 60%);
0
diff --git a/packages/css/src/types.ts b/packages/css/src/types.ts @@ -114,8 +114,8 @@ export type TCss< T extends IConfig, Props extends { [key: string]: string | number; - } -> = { + }, + CP = { [K in keyof Props]: Props[K] extends TUtility<any, any> ? ReturnType<Props[K]> : ( @@ -123,42 +123,20 @@ export type TCss< ...
7
diff --git a/src/parsers/linter/GmlLinter.hx b/src/parsers/linter/GmlLinter.hx @@ -579,7 +579,7 @@ class GmlLinter { } } else if (argc > maxArgs) { if (minArgs == maxArgs) { - addError('Too many arguments for $currName (expected ${doc.maxArgs}, got $argc)'); + addError('Too many arguments for $currName (expected $maxAr...
1
diff --git a/stories/tour-tooltips.stories.js b/stories/tour-tooltips.stories.js /** - * VisuallyHidden stories. + * TourTooltip stories. * * Site Kit by Google, Copyright 2021 Google LLC * * External dependencies */ import { storiesOf } from '@storybook/react'; +import fetchMock from 'fetch-mock'; /** * Internal depen...
1
diff --git a/packages/app/src/server/service/slack-command-handler/search.js b/packages/app/src/server/service/slack-command-handler/search.js @@ -132,7 +132,10 @@ module.exports = (crowi) => { const actionBlocks = { type: 'actions', - elements: [ + elements: [], + }; + // add "Dismiss" button + actionBlocks.elements.p...
7
diff --git a/src/test/main.js b/src/test/main.js @@ -13,7 +13,7 @@ config.hidepassed = true; // load tests and then start -require( [ "tests" ], function() { +require( [ "tests" ], /* istanbul ignore next */ function() { if ( global._noQUnitBridge ) { return; } if ( global._setupQUnitBridge ) { // bridge injected, set ...
8
diff --git a/scenes/street.scn b/scenes/street.scn ] } ] + }, + { + "position": [0, 0, 0], + "quaternion": [0, 0, 0, 1], + "start_url": "../metaverse_modules/scene-preview/", + "components": [ + { + "key": "position", + "value": [0, 0, -300] + }, + { + "key": "quaternion", + "value": [0, 1, 0, 0] + }, + { + "key": "pre...
0
diff --git a/app/components/Explorer/Explorer.jsx b/app/components/Explorer/Explorer.jsx import React from "react"; -import {Tabs, Tab} from "../Utility/Tabs"; import Witnesses from "./Witnesses"; import CommitteeMembers from "./CommitteeMembers"; import FeesContainer from "../Blockchain/FeesContainer"; import BlocksCo...
14
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb <%= csrf_meta_tag -%> </head> <body> - <%= content_for(:js) do %> - <script type="text/javascript"> - var dashboard_notifications = <%= safe_js_object @dashboard_notifications.to_json %>; - </script> - <% end %> - <% if ( ( con...
2
diff --git a/src/model/Component.mjs b/src/model/Component.mjs @@ -112,6 +112,7 @@ class Component extends Base { * * @param {Object|String} key * @param {*} value + * @override overrides the config setter in core.Base */ set(key, value) { let me = this;
12
diff --git a/lib/contracts/deploy_manager.js b/lib/contracts/deploy_manager.js let async = require('async'); +// TODO: remove contractsManager dependency +// * use events +// * in the engine use the instance instead + class DeployManager { constructor(options) { const self = this; @@ -10,7 +14,6 @@ class DeployManager ...
2
diff --git a/contracts/ERC20FeeToken.sol b/contracts/ERC20FeeToken.sol @@ -98,6 +98,7 @@ contract ERC20FeeToken is Owned, SafeFixedMath { symbol = _symbol; totalSupply = initialSupply; balanceOf[initialBeneficiary] = initialSupply; + transferFeeRate = _feeRate; feeAuthority = _feeAuthority; }
12
diff --git a/api/src/workers/rss.js b/api/src/workers/rss.js @@ -37,7 +37,6 @@ rssQueue.process((job, done) => { ParseFeed(job.data.url, function(posts, err) { // log the error if (err) { - logger.error('Problem parsing feed:'); logger.error(err); done(err); return; @@ -58,7 +57,6 @@ rssQueue.process((job, done) => { u...
13
diff --git a/src/traces/isosurface/convert.js b/src/traces/isosurface/convert.js @@ -409,6 +409,20 @@ function generateIsosurfaceMesh(data) { // for planar surfaces (i.e. caps and slices) due to group shading // bug of gl-mesh3d. But don't worry this would run faster! + var isFirstPass = (min !== vMin || max !== vMax);...
7
diff --git a/articles/protocols/saml/saml-configuration/special-configuration-scenarios/signing-and-encrypting-saml-requests.md b/articles/protocols/saml/saml-configuration/special-configuration-scenarios/signing-and-encrypting-saml-requests.md @@ -60,7 +60,7 @@ Next, you'll need make sure that the SAML assertion is *n...
1
diff --git a/test/e2e/delegation.spec.js b/test/e2e/delegation.spec.js @@ -48,7 +48,7 @@ module.exports = { async () => { browser.click("#from") browser.click("#from option[value='1']") - browser.pause(500) + browser.pause(1000) browser.setValue("#amount", value) }, // expected subtotal
7
diff --git a/docs/reference.rst b/docs/reference.rst @@ -818,22 +818,18 @@ For example, the command below runs ``my_flow.tag`` without showing the web brow tagui my_flow.tag -headless -report - -deploy or -d ******************** Deploys a flow, creating a shortcut which can be double-clicked to run the flow. If the flo...
7
diff --git a/test/github-package.test.js b/test/github-package.test.js @@ -768,19 +768,61 @@ describe('GithubPackage', function() { await githubPackage.scheduleActiveContextUpdate(); }); - it('uses an active repository', async function() { - await assert.async.isTrue(githubPackage.getActiveRepository().isPresent()); + ...
4
diff --git a/examples/component/index.js b/examples/component/index.js @@ -17,6 +17,7 @@ class Example extends React.Component { filter: false, customBodyRender: (value, tableMeta, updateValue) => ( <FormControlLabel + label="" value={value} control={<TextField value={value} />} onChange={event => updateValue(event.tar...
0
diff --git a/packages/components/stencil.config.js b/packages/components/stencil.config.js @@ -5,7 +5,12 @@ exports.config = { namespace: 'airship', outputTargets:[ { type: 'dist' }, - { type: 'www', serviceWorker: false } + { + type: 'www', + serviceWorker: false, + empty: false, + dir: path.join(__dirname, '../../www...
12
diff --git a/server/db/DBManager.js b/server/db/DBManager.js -var MongoClient = require('mongodb').MongoClient -var ObjectID = require('mongodb').ObjectID +var MongoClient = require('mongodb').MongoClient; +var ObjectID = require('mongodb').ObjectID; const config = require('../../config.json'); - -var mongoURL = config...
4
diff --git a/static/css/styles.css b/static/css/styles.css @@ -604,9 +604,11 @@ ul.bulleted li ul { padding: 6px 20px; background-color: #fff; font-size: 1.3rem; - line-height: 1.3rem; + line-height: 1.5rem; text-align: center; color: #667a7d; + white-space:normal !important; + word-wrap: break-word; } .btn:hover,
11
diff --git a/src/samples/p2p/peercall.html b/src/samples/p2p/peercall.html @@ -179,7 +179,9 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $('#local').children('video').get(0).srcObject = ScreenStream.mediaStream; p2p.publish(getTargetId(), ScreenStream).then(publication=>{ publicationForScreen = publication; - }); + })...
9
diff --git a/src/components/Text.test.js b/src/components/Text.test.js // @flow import React from "react"; +import { PixelRatio } from "react-native"; import { shallow } from "enzyme"; import Markdown from "react-native-easy-markdown"; -import Text from "./Text"; +import Text, { cap } from "./Text"; import { lightNavyB...
0
diff --git a/src/drivers/listeners.js b/src/drivers/listeners.js @@ -153,9 +153,9 @@ export function addRequestListener({ name, win, domain } : { name : string, win if (existingListener) { if (win && domain) { - throw new Error(`Request listener already exists for ${name} on domain ${domain.toString()} for specified wi...
7
diff --git a/src/transitions/Collapse.spec.js b/src/transitions/Collapse.spec.js import React from 'react'; import { assert } from 'chai'; -import { spy } from 'sinon'; +import { spy, stub } from 'sinon'; import { createShallow } from 'src/test-utils'; import Collapse, { styleSheet } from './Collapse'; @@ -145,6 +145,7...
0
diff --git a/skills/leon/color/nlu/en.json b/skills/leon/color/nlu/en.json "answers": [ "Where I live it is all black, but I believe I tend to have a preference for %blue_leon% and %pink_leon%. Do not ask why...", "Sometimes %blue_leon%, sometimes %pink_leon%.", - "{{ color }} is great! But I prefer that one.", + "{{ c...
1
diff --git a/src/app.js b/src/app.js @@ -458,7 +458,7 @@ async function main(){ calculated.views = _.pick(await db .collection('profileViews') - .findOne({ uuid: hypixelPlayer.uuid, profile_id: profileId }), + .findOne({ uuid: hypixelPlayer.uuid }), 'total', 'daily', 'weekly'); res.render('stats', { items, calculated, ...
8
diff --git a/lib/transports/elasticsearch.js b/lib/transports/elasticsearch.js @@ -440,6 +440,10 @@ elasticsearch.prototype.setData = function (data, limit, offset, callback) { data.forEach(function (elem) { var actionMeta = { index: {} } // use type from base otherwise fallback to elem + + if (!self.base.index) { + ac...
4
diff --git a/includes/Context.php b/includes/Context.php @@ -169,8 +169,8 @@ final class Context { * @return string|false The reference permalink URL or false if post does not exist. */ public function get_reference_permalink( $post = 0 ) { - $reference_site_url = untrailingslashit( $this->get_reference_site_url() ); -...
2
diff --git a/api/controllers/invites.ts b/api/controllers/invites.ts @@ -87,7 +87,8 @@ const createInvite = async (req, res) => { welcomeMessage: inviteCreated.message, contactId: contact.id, status: inviteCreated.invite_status, - inviteString: inviteCreated.pin + inviteString: inviteCreated.pin, + invoice: inviteCreat...
0
diff --git a/src/API.js b/src/API.js @@ -156,8 +156,22 @@ var refreshToken = function(baseURL, refreshToken) { }); } +const ERROR_NOT_COMPATIBLE = { + message: 'Not a CoopCycle server' +} + +const ERROR_INVALID_HOSTNAME = { + message: 'Hostname is not valid' +} + const resolveBaseURL = function(server) { return new Pro...
7
diff --git a/test/integration/hook.csrf.test.js b/test/integration/hook.csrf.test.js @@ -127,7 +127,7 @@ describe('CSRF ::', function() { if (err && err.status === 403) { return done(); } - done(new Error('Expected a 403 error, instead got: ' + err || response.body)); + done(new Error('Expected a 403 error, instead got...
1
diff --git a/articles/client-auth/current/mobile-desktop.md b/articles/client-auth/current/mobile-desktop.md @@ -125,7 +125,7 @@ Using the authorization code obtained in step 2, you can obtain the ID token by ], "postData": { "mimeType": "application/json", - "text": "{\"grant_type\":\"authorization_code\",\"client_id\...
2
diff --git a/userscript.user.js b/userscript.user.js @@ -65963,7 +65963,23 @@ var $$IMU_EXPORT$$; // https://storage.mantan-web.jp/images/2018/01/16/20180116dog00m200019000c/002_size10.jpg // https://storage.mantan-web.jp/images/2017/02/25/20170225dog00m200018000c/001_thumb2.jpg // https://storage.mantan-web.jp/images/...
7
diff --git a/data.js b/data.js @@ -14,6 +14,14 @@ module.exports = [{ url: "https://github.com/wisniewski94/sprites.js", source: "https://raw.githubusercontent.com/wisniewski94/sprites.js/master/sprites.js" }, + { + name: "ShadowQuery", + github: "schrotie/shadow-query", + tags: ["web-components"], + description: "Micr...
0
diff --git a/website/editor/src/components/ComponentGeneratorComponent.vue b/website/editor/src/components/ComponentGeneratorComponent.vue </template> <script> -import {xml2js} from "xml-js" +import {js2xml, xml2js} from "xml-js" import CorpusComponent from "@/components/CorpusComponent" import corpusMixin from "@/shar...
1
diff --git a/src/electron.js b/src/electron.js @@ -2350,12 +2350,10 @@ function createTray() { function setTrayMenu() { if (tray === null) return false; - let willShowPausableItems = (settings.detectIdleTimeEnabled || settings.adjustmentTimes.length ? true : false) - const contextMenu = Menu.buildFromTemplate([ getTime...
1
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -123,25 +123,21 @@ If you want to run simultaneously the application and the specs generation follo The development of Builder specs is separated from regular development. This means that you can develop new specs or modify the existing ones without having the whole app...
3
diff --git a/config/canonical.json b/config/canonical.json "shop": "hairdresser" } }, - "shop/hairdresser|The Barber Shop": { - "count": 193, - "tags": { - "brand": "The Barber Shop", - "name": "The Barber Shop", - "shop": "hairdresser" - } - }, "shop/hairdresser|Toni & Guy": { "count": 95, "tags": {
7
diff --git a/assets/js/components/dashboard-sharing/UserRoleSelect.js b/assets/js/components/dashboard-sharing/UserRoleSelect.js @@ -28,7 +28,7 @@ import { Chip, ChipCheckmark } from '@material/react-chips'; */ import { __ } from '@wordpress/i18n'; import { ESCAPE, ENTER } from '@wordpress/keycodes'; -import { useCallb...
5
diff --git a/magda-web-client/src/Components/RecordHandler.js b/magda-web-client/src/Components/RecordHandler.js @@ -90,8 +90,7 @@ class RecordHandler extends React.Component { const datasetTabs = [ {id: 'details', name: 'Details', isActive: true}, {id: 'discussion', name: 'Discussion', isActive: !config.disableAuthent...
13
diff --git a/packages/app/src/components/Me/ApiSettings.tsx b/packages/app/src/components/Me/ApiSettings.tsx @@ -10,13 +10,13 @@ import { usePersonalSettingsInfo } from '~/stores/personal-settings'; const ApiSettings = (): JSX.Element => { const { t } = useTranslation(); - const { data: personalSettingsInfoData, mutate...
10
diff --git a/OurUmbraco/Project/ProjectExtensions.cs b/OurUmbraco/Project/ProjectExtensions.cs @@ -42,6 +42,7 @@ namespace OurUmbraco.Project if (uVersion != null) { version = uVersion.Name.Replace(".x", ""); + version = version.Replace("Version", ""); } else {
2
diff --git a/token-metadata/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/metadata.json b/token-metadata/0x38c4102D11893351cED7eF187fCF43D33eb1aBE6/metadata.json "symbol": "SHRIMP", "address": "0x38c4102D11893351cED7eF187fCF43D33eb1aBE6", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIE...
3
diff --git a/static/scss/partials/_wallets.scss b/static/scss/partials/_wallets.scss &-white { background: transparent; - @at-root .wallets { - &--icon { - margin-right: 0; - padding-left: rem(20px); - } - } - &::before { @extend %wallet-icon--before; &-white { background: transparent; - @at-root .wallets { - &--icon {...
7
diff --git a/src/main/groovy/streama/ResultHelper.groovy b/src/main/groovy/streama/ResultHelper.groovy package streama import org.apache.commons.logging.LogFactory +import static javax.servlet.http.HttpServletResponse.SC_OK class ResultHelper { @@ -16,7 +17,7 @@ class ResultHelper { ] } - public static Map generateOkRe...
7
diff --git a/src/CrudTrait.php b/src/CrudTrait.php @@ -207,13 +207,12 @@ trait CrudTrait public function uploadMultipleFilesToDisk($value, $attribute_name, $disk, $destination_path) { $request = \Request::instance(); - $attribute_value = (array) $this->{$attribute_name}; + $attribute_value = json_decode($this->{$attrib...
3
diff --git a/articles/quickstart/spa/react/_includes/_centralized_login.md b/articles/quickstart/spa/react/_includes/_centralized_login.md -<%= include('../../_includes/_login_preamble', { library: 'React', embeddedLoginLink: 'https://github.com/auth0-samples/auth0-react-samples/tree/embedded-login/01-Embedded-Login' }...
2
diff --git a/lib/manage-prototype-handlers.js b/lib/manage-prototype-handlers.js @@ -521,14 +521,15 @@ async function getPluginsModeHandler (req, res) { const startTimestamp = Date.now() async function postPluginsStatusHandler (req, res) { + const { mode } = req.params let status = 'processing' try { const chosenPlugin...
11
diff --git a/src/article/editor/TOCProvider.js b/src/article/editor/TOCProvider.js @@ -62,10 +62,20 @@ export default class TOCProvider extends EventEmitter { const config = this.config let entries = [] + // Title is always there + entries.push({ + id: 'title', + name: 'Title', + level: 1, + node: doc.get('title') + })...
7
diff --git a/src/components/Framed.js b/src/components/Framed.js @@ -58,7 +58,7 @@ const BorderRight = BorderBase.extend` right: 0; width: 5vw; height: 100%; - min-width: ${({ theme }) => theme.space[4]}px; + min-width: ${({ theme }) => theme.space[3]}px; transform-origin: right center; ` @@ -75,6 +75,7 @@ const Border...
1
diff --git a/includes/Modules/Subscribe_With_Google.php b/includes/Modules/Subscribe_With_Google.php namespace Google\Site_Kit\Modules; -use Google\Site_Kit\Context; use Google\Site_Kit\Core\Assets\Asset; use Google\Site_Kit\Core\Assets\Script; use Google\Site_Kit\Core\Modules\Module; @@ -21,8 +20,6 @@ use Google\Site_...
2
diff --git a/runtime/opensbp/parser.js b/runtime/opensbp/parser.js @@ -2,6 +2,7 @@ sbp_parser = require('./sbp_parser') var log = require('../../log').logger('sbp'); var CMD_SPACE_RE = /(\w\w)([ \t]+)([^\s\t,].*)/i var CMD_RE = /^\s*(\w\w)(((\s*,\s*)([+-]?[0-9]+(\.[0-9]+)?)?)+)\s*$/i +var STUPID_STRING_RE = /(\&[A-Za-z...
0
diff --git a/tasks/gulp/compile-assets.mjs b/tasks/gulp/compile-assets.mjs @@ -145,6 +145,20 @@ compileJavaScripts.displayName = 'compile:js' */ function compileJavaScript (stream, moduleName) { return stream + .pipe(plumber(function (cause) { + const error = new PluginError('compile:js', cause) + console.error(error.t...
11
diff --git a/sirepo/package_data/static/js/sirepo-components.js b/sirepo/package_data/static/js/sirepo-components.js @@ -2004,7 +2004,7 @@ SIREPO.app.directive('settingsMenu', function(appDataService, appState, fileMana $scope.copyItem = function() { if(! $('#sr-jit-copy-confirmation')[0]) { - $('body').append(copyConf...
1
diff --git a/token-metadata/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/metadata.json b/token-metadata/0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9/metadata.json "symbol": "FTT", "address": "0x50D1c9771902476076eCFc8B2A83Ad6b9355a4c9", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/packages/docs/templates/blocks/propertiesFormTransformer.js b/packages/docs/templates/blocks/propertiesFormTransformer.js @@ -278,6 +278,7 @@ function makeBlockDefinition({ '#bfbfbf', '#d9d9d9', ]; + block.properties.showValue = true; return block; case 'date': block.type = 'DateSelector';
1
diff --git a/src/encoded/schemas/mixins.json b/src/encoded/schemas/mixins.json "title": "Term ID", "description": "Ontology identifier describing a component in the treatment.", "type": "string", - "pattern": "^(CHEBI:[0-9]{1,7})|(UniprotKB:P[0-9]{5})|(Taxon:[0-9]{2,7})|(NTR:[0-9]{2,8})$" + "pattern": "^(CHEBI:[0-9]{1,...
0
diff --git a/docs/source/intro/platform.md b/docs/source/intro/platform.md @@ -109,7 +109,7 @@ graph TB ### Apollo Federation architecture -With Apollo Federation, a **gateway** sits in front of one or more **implementing services**: +With Apollo Federation, a **gateway** sits in front of one or more **subgraphs**: ```...
14
diff --git a/src/lime/_internal/backend/html5/HTML5Window.hx b/src/lime/_internal/backend/html5/HTML5Window.hx @@ -75,6 +75,8 @@ class HTML5Window private var textInputEnabled:Bool; private var unusedTouchesPool = new List<Touch>(); + private var __focusPending:Bool; + public function new(parent:Window) { this.parent =...
10
diff --git a/docs/01-introduction.md b/docs/01-introduction.md @@ -18,7 +18,7 @@ Snowpack leverages JavaScript's native module system (<a href="https://developer <div class="company-logos"> {% for user in usersList %} - <a href="{{ user.url }}" target="_blank" rel="noopener noreferrer"> + <a href="{{ user.url }}" targe...
0
diff --git a/modules/featureforwardBidAdapter.js b/modules/featureforwardBidAdapter.js @@ -14,8 +14,8 @@ function FeatureForwardAdapter() { }; function _callBids(bidderRequest) { - var i = 0; bidderRequest.bids.forEach(bidRequest => { + var i = 0; try { while (bidRequest.sizes[i] !== undefined) { var params = Object.as...
11
diff --git a/src/apps.json b/src/apps.json "cats": [ 32 ], - "html": "<script[^>]*>[^>]+\\.src\\s*=\\s*['\"](?:https?:)?//tag\\.bounceexchange\\.com/", + "script": "//tag\\.bounceexchange\\.com/", "icon": "Bounce Exchange.svg", "js": { "bouncex": "" "cats": [ 36 ], - "html": "<script[^>]*>[^<]+?bsa\\.src\\s*=\\s*['\"](...
5
diff --git a/README.md b/README.md @@ -13,6 +13,12 @@ React Router keeps your UI in sync with the URL. Make the URL your first thought API docs are [here](https://reacttraining.com/react-router/api). +## Installation + +`npm install --save react-router@next` or `yarn add react-router@next` + +You can also install speci...
0
diff --git a/src/core/operations/ParseIPv6Address.mjs b/src/core/operations/ParseIPv6Address.mjs @@ -165,6 +165,89 @@ class ParseIPv6Address extends Operation { // Multicast output += "\nThis is a reserved multicast address."; output += "\nMulticast addresses range: ff00::/8"; + + switch (ipv6[0]) { + case 0xff01: + ou...
0
diff --git a/CommentFlagsHelper.user.js b/CommentFlagsHelper.user.js // @description Always expand comments (with deleted) and highlight expanded flagged comments, Highlight common chatty and rude keywords // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 3.2.7 +// @version 3.3...
2
diff --git a/configs/bootstrap-v4.json b/configs/bootstrap-v4.json ], "stop_urls": [], "selectors": { - "lvl1": ".bd-content h1", - "lvl2": ".bd-content h2", - "lvl3": ".bd-content h3", + "lvl0": ".bd-content h1", + "lvl1": ".bd-content h2", + "lvl2": ".bd-content h3", "text": ".bd-content p, .bd-content li" }, "min_in...
7
diff --git a/main/actions.js b/main/actions.js const { Ooniprobe } = require('./utils/ooni/ooniprobe') - const log = require('electron-log') -const debug = require('debug')('ooniprobe-desktop.main.actions') const Sentry = require('@sentry/electron') const hardReset = () => { @@ -31,7 +29,7 @@ const listMeasurements = (...
14
diff --git a/generators/ci-cd/templates/travis.yml.ejs b/generators/ci-cd/templates/travis.yml.ejs @@ -44,15 +44,15 @@ env: - NG_CLI_ANALYTICS="false" before_install: - - if [[ $JHI_JDK = '11' ]]; then - echo '*** Using OpenJDK 11' + if [[ $JHI_JDK = '8' ]]; then + echo '*** Using OpenJDK 8' + else + echo '*** Using Op...
12
diff --git a/test/jasmine/tests/transition_test.js b/test/jasmine/tests/transition_test.js @@ -1189,7 +1189,7 @@ describe('Plotly.react transitions:', function() { .then(done); }); - it('should update ranges of date and category axes', function(done) { + it('@flaky should update ranges of date and category axes', funct...
0
diff --git a/src/UserConfig.js b/src/UserConfig.js @@ -52,7 +52,6 @@ class UserConfig { this.dynamicPermalinks = true; this.useGitIgnore = true; this.dataDeepMerge = false; - this.experiments = new Set(); this.extensionMap = new Set(); this.watchJavaScriptDependencies = true; this.additionalWatchTargets = []; @@ -576,1...
2
diff --git a/services/acceptance/services/errortelemetry.test.js b/services/acceptance/services/errortelemetry.test.js @@ -56,6 +56,35 @@ describe('Error Telemetry service acceptance tests', () => { }); }); + it('should reject invalid json', () => { + return request({ + url: h.getUrl('/telemetry/error'), + method: 'POS...
0
diff --git a/.github/workflows/integration-local.yml b/.github/workflows/integration-local.yml @@ -39,7 +39,7 @@ jobs: working-directory: cadence/tests - name: Build & Run - run: npm run start:dev + run: npm run dev:emulator - name: Deploy Contracts run: flow project deploy --network=emulator
3
diff --git a/src/libs/hasHoverSupport/index.js b/src/libs/hasHoverSupport/index.js @@ -8,7 +8,7 @@ import * as Browser from '../Browser'; function hasHoverSupport() { if (Browser.isInternetExplorer()) { - return true; + return !Browser.isMobile(); } return !window.matchMedia('(hover: none)').matches; }
9
diff --git a/app/features/search.js b/app/features/search.js import $ from 'blingblingjs' import hotkeys from 'hotkeys-js' import { querySelectorAllDeep } from 'query-selector-shadow-dom' +import { notList } from '../utilities' import { PluginRegistry, PluginHints } from '../plugins/_registry' let SelectorEngine @@ -84...
4
diff --git a/site/css/rabbit.css b/site/css/rabbit.css @@ -644,7 +644,9 @@ td.desc, th.desc { padding: 20px 0 0; } -ol.feed { +ul.feed { + list-style-type: none; + margin: 0px; padding: 0px; clear: both; @@ -653,7 +655,7 @@ ol.feed { .feed li { line-height: 17px; padding: 0px; - margin-bottom: 16px; + margin-bottom: 2e...
7
diff --git a/bin/definition-validators/path.js b/bin/definition-validators/path.js * limitations under the License. **/ 'use strict'; +const PathEnforcer = require('../enforcers/path'); module.exports = PathObject; @@ -25,6 +26,7 @@ function PathObject(data) { const { major } = data; Object.assign(this, { + component: ...
12
diff --git a/edit.js b/edit.js @@ -7,7 +7,7 @@ import {TransformControls} from './TransformControls.js'; // import abi from 'https://contracts.webaverse.com/abi.js'; import {XRPackage, pe, renderer, scene, camera, parcelMaterial, floorMesh, proxySession, getRealSession, loginManager} from './run.js'; import {downloadFi...
2
diff --git a/character-controller.js b/character-controller.js @@ -643,6 +643,7 @@ class InterpolatedPlayer extends StatePlayer { crouch: new BiActionInterpolant(() => this.actionBinaryInterpolants.crouch.get(), 0, crouchMaxTime), activate: new UniActionInterpolant(() => this.actionBinaryInterpolants.activate.get(), 0,...
0
diff --git a/tasks/sync_packages.js b/tasks/sync_packages.js @@ -116,7 +116,7 @@ function syncPartialBundlePkg(d) { '', 'Contains trace modules ' + common.formatEnumeration(d.traceList) + '.', '', - 'For more info on plotly.js, go to https://github.com/plotly/plotly.js', + 'For more info on plotly.js, go to https://git...
7
diff --git a/www/tablet/js/widget_pagetab.js b/www/tablet/js/widget_pagetab.js @@ -33,7 +33,6 @@ var Modul_pagetab = function () { } function loadPage(goUrl, doPush) { - return; // set return timer localStorage.setItem('pagetab_lastUrl', goUrl); startReturnTimer();
1
diff --git a/Source/Scene/WebMapTileServiceImageryProvider.js b/Source/Scene/WebMapTileServiceImageryProvider.js @@ -328,19 +328,18 @@ function requestImage(imageryProvider, col, row, level, request, interval) { var staticDimensions = imageryProvider._dimensions; var dynamicIntervalData = defined(interval) ? interval.d...
3
diff --git a/source/git-api.js b/source/git-api.js @@ -292,9 +292,10 @@ exports.registerApi = (env) => { const task = gitPromise({ commands: credentialsOption(req.body.socketId, req.body.remote).concat([ 'fetch', + config.autoPruneOnFetch ? '--prune' : '', + '--', req.body.remote, req.body.ref ? req.body.ref : '', - co...
1
diff --git a/character-sfx.js b/character-sfx.js import * as THREE from 'three'; import Avatar from './avatars/avatars.js'; +import * as sounds from './sounds.js'; import { idleFactorSpeed, walkFactorSpeed, @@ -11,43 +12,12 @@ import { } from './constants.js'; import { mod, - loadJson, - loadAudioBuffer, + // loadJson,...
4
diff --git a/edit.js b/edit.js @@ -9,7 +9,7 @@ import {tryLogin, loginManager} from './login.js'; import runtime from './runtime.js'; import {parseQuery, downloadFile} from './util.js'; import {rigManager} from './rig.js'; -import {makeRayMesh, makeTextMesh} from './vr-ui.js'; +import {makeRayMesh, makeTextMesh, makeHi...
0
diff --git a/packages/bpk-component-calendar/src/__snapshots__/BpkCalendarGridTransition-test.js.snap b/packages/bpk-component-calendar/src/__snapshots__/BpkCalendarGridTransition-test.js.snap @@ -17,13 +17,13 @@ exports[`BpkCalendar should render correctly 1`] = ` } > <div> - {"minDate":"2009-02-01T00:00:00.000Z","max...
13
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<!ENTITY version-java-client "5.7.0"> +<!ENTITY version-java-client "5.7.1"> <...
12
diff --git a/routes/serve-routes.js b/routes/serve-routes.js @@ -2,7 +2,7 @@ const logger = require('winston'); const { getClaimId, getChannelViewData, getLocalFileRecord } = require('../controllers/serveController.js'); const serveHelpers = require('../helpers/serveHelpers.js'); const { handleRequestError } = require(...
1
diff --git a/types/expressions.d.ts b/types/expressions.d.ts @@ -1034,7 +1034,7 @@ declare module 'mongoose' { * * @see https://docs.mongodb.com/manual/reference/operator/aggregation/ne/#mongodb-expression-exp.-ne */ - $ne: Expression | [Expression, Expression] | null; + $ne: Expression | [Expression, Expression | Null...
11
diff --git a/network.js b/network.js @@ -2457,6 +2457,11 @@ function startAcceptingConnections(){ wss = new WebSocketServer({ port: conf.port }); wss.on('connection', function(ws) { var ip = ws.upgradeReq.connection.remoteAddress; + if (!ip){ + console.log("no ip in accepted connection"); + ws.terminate(); + return; + ...
9
diff --git a/src/reducers/transactions/index.js b/src/reducers/transactions/index.js @@ -5,6 +5,8 @@ import { getTransactionStatus } from '../../actions/transactions' +import { selectAccount } from '../../actions/account' + const initialState = {} const transactions = handleActions({ @@ -48,7 +50,10 @@ const transactio...
9
diff --git a/.gitignore b/.gitignore @@ -67,3 +67,103 @@ yarn-error.log .pnp.js # Yarn Integrity file .yarn-integrity + +### Intellij+all ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm + +# File-based project format +*.iws + +# IntelliJ +out/ + +.idea/ +...
0
diff --git a/priv/public/ui/app/mn_wizard/mn_terms_and_conditions/mn_terms_and_conditions_controller.js b/priv/public/ui/app/mn_wizard/mn_terms_and_conditions/mn_terms_and_conditions_controller.js mnServersService .setupServices({services: 'kv,index,fts,n1ql'}).then(function () { var newClusterState = mnWizardService.g...
12
diff --git a/website_code/php/management/upload.php b/website_code/php/management/upload.php @@ -34,12 +34,16 @@ if($_FILES["fileToUpload"]["name"]) { { $description = $_POST["templateDescription"]; } + else + { + die("Description can't be empty!"); + } $source = $_FILES["fileToUpload"]["tmp_name"]; $temp_loc = dirname...
10
diff --git a/src/pages/guides/Backpacks.jsx b/src/pages/guides/Backpacks.jsx @@ -110,6 +110,14 @@ const centerCell = ({ value }) => { </div>; }; +const centerNowrapCell = ({ value }) => { + return <div + className = 'center-content nowrap-content' + > + { value } + </div>; +}; + const priceCell = ({ value }) => { retur...
14
diff --git a/src/containers/sound-tab.jsx b/src/containers/sound-tab.jsx @@ -52,20 +52,18 @@ class SoundTab extends React.Component { render () { const { - editingTarget, - sprites, - stage, + vm, onNewSoundFromLibraryClick, onNewSoundFromRecordingClick } = this.props; - const target = editingTarget && sprites[editingT...
4
diff --git a/resource/js/components/PageEditor/Editor.js b/resource/js/components/PageEditor/Editor.js @@ -4,6 +4,7 @@ import PropTypes from 'prop-types'; import { UnControlled as CodeMirror } from 'react-codemirror2'; require('codemirror/lib/codemirror.css'); require('codemirror/addon/display/autorefresh'); +require('...
4
diff --git a/server/game/gamesteps/killcharacters.js b/server/game/gamesteps/killcharacters.js @@ -10,7 +10,7 @@ class KillCharacters extends BaseStep { continue() { let cardsInPlay = this.cards.filter(card => card.location === 'play area'); - this.game.applyGameAction('killed', cardsInPlay, killable => { + this.game.a...
10
diff --git a/token-metadata/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/metadata.json b/token-metadata/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/metadata.json "symbol": "PLR", "address": "0xe3818504c1B32bF1557b16C238B2E01Fd3149C17", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3